diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-04-28 16:33:01 -0300 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-04-28 16:33:01 -0300 |
commit | a7c356ef9311981d32bda0bfe80c5f84a6f0f717 (patch) | |
tree | c56387119da1f9b547d0a9b86977b047c2e06bbb /provisioning/modules | |
parent | 9a7e5dfa614831ab90b0bca19203602033cea241 (diff) |
Activate custom modules now uses the correct setup
Diffstat (limited to 'provisioning/modules')
-rwxr-xr-x | provisioning/modules/pixelated/files/activate_custom_node_modules.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/provisioning/modules/pixelated/files/activate_custom_node_modules.sh b/provisioning/modules/pixelated/files/activate_custom_node_modules.sh index 2e15a42b..f46b67e1 100755 --- a/provisioning/modules/pixelated/files/activate_custom_node_modules.sh +++ b/provisioning/modules/pixelated/files/activate_custom_node_modules.sh @@ -28,13 +28,10 @@ fi source /home/vagrant/user-agent-venv/bin/activate cd /vagrant/service -echo "running python setup.py develop" -python setup.py develop >/dev/null -echo "running bower install" -cd /vagrant/web-ui/ -node_modules/.bin/bower install >/dev/null +echo "running python setup" +./go setuppy > /dev/null +echo "running js setup" +./go setupjs > /dev/null -echo "running go build" -LC_ALL=en_US.UTF-8 ./go build cd /vagrant |