MyBuilder\Conductor\Command\UpdateCommand::ensureRepositoryDirExists PHP Method

ensureRepositoryDirExists() private method

private ensureRepositoryDirExists ( $path )
    private function ensureRepositoryDirExists($path)
    {
        $fileSystem = new Filesystem();
        if (false === $fileSystem->exists($path)) {
            $fileSystem->mkdir($path);
        }
    }