diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-02-12 16:48:10 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-02-12 16:48:10 -0200 |
commit | 3692386b6283eb00de377af6c2437f31508d2db3 (patch) | |
tree | 4b00a3babebfbeae0690d5d53abc9dd7780a7591 /provisioning/modules/pixelated/files | |
parent | 4478b2afd54a08a568a6a3a2990bfda7dace3d7e (diff) |
Bower always uses node_modules and added LC_ALL for the compass compile to work
Diffstat (limited to 'provisioning/modules/pixelated/files')
-rwxr-xr-x | provisioning/modules/pixelated/files/activate_custom_node_modules.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/provisioning/modules/pixelated/files/activate_custom_node_modules.sh b/provisioning/modules/pixelated/files/activate_custom_node_modules.sh index 5fa90b6a..2e15a42b 100755 --- a/provisioning/modules/pixelated/files/activate_custom_node_modules.sh +++ b/provisioning/modules/pixelated/files/activate_custom_node_modules.sh @@ -32,9 +32,9 @@ echo "running python setup.py develop" python setup.py develop >/dev/null echo "running bower install" cd /vagrant/web-ui/ -bower install >/dev/null +node_modules/.bin/bower install >/dev/null echo "running go build" -./go build +LC_ALL=en_US.UTF-8 ./go build cd /vagrant |