Fixed mistake in setting var

This commit is contained in:
Mattia Trapani 2016-01-05 10:48:08 +01:00
parent d59b7db85e
commit 5aa7ae7287

View File

@ -15,6 +15,7 @@ set('copy_dirs', []);
set('writable_dirs', []);
set('writable_use_sudo', true); // Using sudo in writable commands?
set('http_user', null);
set('composer_command', 'composer'); // Path to composer
/**
* Environment vars
@ -22,7 +23,6 @@ set('http_user', null);
env('timezone', 'UTC');
env('branch', ''); // Branch to deploy.
env('env_vars', ''); // For Composer installation. Like SYMFONY_ENV=prod
env('composer_command', 'composer'); // Path to composer
env('composer_options', 'install --no-dev --verbose --prefer-dist --optimize-autoloader --no-progress --no-interaction');
env('git_cache', function () { //whether to use git cache - faster cloning by borrowing objects from existing clones.
$gitVersion = run('git version');