Make vagrant provision script stop on error

This commit is contained in:
Tom Hughes 2016-03-28 22:45:20 +01:00
parent 414388f3b7
commit 8fd70ff44f

View file

@ -1,5 +1,8 @@
#!/usr/bin/env bash
# abort on error
set -e
# set locale to UTF-8 compatible. apologies to non-english speakers...
locale-gen en_GB.utf8
update-locale LANG=en_GB.utf8 LC_ALL=en_GB.utf8