Skip to content

Commit

Permalink
Fix reload provision when using php 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lloricode authored Apr 27, 2024
1 parent daf14c3 commit 601cc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/homestead.rb
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ def self.configure(config, settings)
# Update Composer On Every Provision
config.vm.provision 'shell' do |s|
s.name = 'Update Composer'
s.inline = 'sudo chown -R vagrant:vagrant /usr/local/bin && sudo -u vagrant /usr/local/bin/composer self-update --no-progress && sudo chown -R vagrant:vagrant /home/vagrant/.config/'
s.inline = 'sudo chown -R vagrant:vagrant /usr/local/bin && sudo -u vagrant /usr/bin/php8.3 /usr/local/bin/composer self-update --no-progress && sudo chown -R vagrant:vagrant /home/vagrant/.config/'
s.privileged = false
end

Expand Down

0 comments on commit 601cc0b

Please sign in to comment.