Skip to content

Commit 3bffa18

Browse files
committed
Remove BUILD_ASSETS env
Signed-off-by: Yukai Huang <yukaihuangtw@gmail.com>
1 parent 85fc41c commit 3bffa18

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

app.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@
1111
"logo": "https://github.com/hackmdio/codimd/raw/master/public/codimd-icon-1024.png",
1212
"success_url": "/",
1313
"env": {
14-
"BUILD_ASSETS": {
15-
"description": "Our build script variable",
16-
"value": "true"
17-
},
1814
"NPM_CONFIG_PRODUCTION": {
1915
"description": "Let npm also install development build tool",
2016
"value": "false"

bin/heroku

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
if [ "$BUILD_ASSETS" = true ]; then
5+
if [ ! -z "$DYNO" ]; then
66
# setup config files
77
cat << EOF > .sequelizerc
88
var path = require('path');

0 commit comments

Comments
 (0)