Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 1a2c749

Browse files
authored
Fix reload provision when using php 5.6 (#1972)
1 parent daf14c3 commit 1a2c749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/homestead.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def self.configure(config, settings)
673673
# Update Composer On Every Provision
674674
config.vm.provision 'shell' do |s|
675675
s.name = 'Update Composer'
676-
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/'
676+
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/'
677677
s.privileged = false
678678
end
679679

0 commit comments

Comments
 (0)