From 9f63581c61249703cb057547360782728b97e81e Mon Sep 17 00:00:00 2001 From: Yukai Huang Date: Fri, 14 Oct 2016 19:28:54 +0800 Subject: Config heroku deployment --- bin/setup | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'bin/setup') diff --git a/bin/setup b/bin/setup index 8cd20dc7..19edeecf 100755 --- a/bin/setup +++ b/bin/setup @@ -2,7 +2,9 @@ # run command at repo root CURRENT_PATH=$PWD -cd $(git rev-parse --show-toplevel) +if [ -d .git ]; then + cd $(git rev-parse --show-toplevel) +fi if ! type npm > /dev/null then @@ -34,7 +36,7 @@ if [ ! -f .sequelizerc ]; then fi echo "install npm and bower packages" -npm install && bower install +BUILD_ASSETS=false npm install && bower install cat << EOF -- cgit v1.2.3