summaryrefslogtreecommitdiff
path: root/bin/heroku
diff options
context:
space:
mode:
authorMax Wu2016-12-11 23:22:17 +0800
committerGitHub2016-12-11 23:22:17 +0800
commit5eec050360fe748eb16f4db6397371466d72421a (patch)
tree8cb035ed94e640eb55659f1dec9924f9b3d4da02 /bin/heroku
parentecb956f515a4a9fc661e0724d694fc1ed093dcaa (diff)
parent9e6fd505e12c21e60347501132e1f473b61942b3 (diff)
Merge pull request #274 from hackmdio/drop-bower
Drop bower
Diffstat (limited to 'bin/heroku')
-rwxr-xr-xbin/heroku4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/heroku b/bin/heroku
index 12f9cc17..f30b2b23 100755
--- a/bin/heroku
+++ b/bin/heroku
@@ -3,7 +3,7 @@
set -e
if [ "$BUILD_ASSETS" = true ]; then
- BUILD_ASSETS=false npm install && npm run assets:install
+ BUILD_ASSETS=false npm install
# setup config files
cat << EOF > .sequelizerc
@@ -31,5 +31,5 @@ EOF
cp public/js/config.js.example public/js/config.js
# build app
- npm run build
+ npm run build:prod
fi