Fix incompatibility between Vaprobash 1.4.2 where first parameter for composer.sh is now treated as a Github token

Ref: https://github.com/fideloper/Vaprobash/pull/493
pull/38/head
Juha Jantunen 2017-03-01 16:04:19 +02:00
parent 9bfa5ff963
commit ea86a4a130
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -292,7 +292,7 @@ Vagrant.configure("2") do |config|
##########
# Provision Composer
config.vm.provision "shell", path: "#{github_url}/scripts/composer.sh", privileged: false, args: composer_packages.join(" ")
config.vm.provision "shell", path: "#{github_url}/scripts/composer.sh", privileged: false, args: ["", composer_packages.join(" ")]
# Provision Laravel
# config.vm.provision "shell", path: "#{github_url}/scripts/laravel.sh", privileged: false, args: [server_ip, laravel_root_folder, public_folder, laravel_version]