0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-19 15:25:19 +00:00

(Vagrantfile) fix shell provision on freebsd

This commit is contained in:
Stefan Siegl 2017-03-16 21:15:59 +01:00
parent bbe06c458f
commit 0e0c502089
No known key found for this signature in database
GPG Key ID: 51575950154839CD

4
Vagrantfile vendored
View File

@ -167,7 +167,7 @@ Vagrant.configure("2") do |config|
end
config.vm.provision "shell", inline: <<-SHELL
mkdir -p /data/build && chown 1000:1000 /data/build
config.vm.provision "shell", privileged: false, inline: <<-SHELL
sudo mkdir -p /data/build && sudo chown $USER:$USER /data/build
SHELL
end