Skip to content

Commit

Permalink
Pass keep_color: true to shell provisioner
Browse files Browse the repository at this point in the history
This avoids the confusing combination of red and green messages.
  • Loading branch information
paulproteus committed Oct 10, 2015
1 parent 89490ca commit f9d75eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vagrant-spk
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Use a shell script to "provision" the box. This installs Sandstorm using
# the bundled installer.
config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/global-setup.sh"
config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/global-setup.sh", keep_color: true
# Then, do stack-specific and app-specific setup.
config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/setup.sh"
config.vm.provision "shell", inline: "sudo bash /opt/app/.sandstorm/setup.sh", keep_color: true
# Shared folders are configured per-provider since vboxsf can't handle >4096 open files,
# NFS requires privilege escalation every time you bring a VM up,
Expand Down

0 comments on commit f9d75eb

Please sign in to comment.