Skip to content

Commit c070a51

Browse files
authored
Fix NODE_OPTIONS (#334)
Thanks to @twocolors for finding this, applying from my id as having problems with easycla
1 parent 6df9b77 commit c070a51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker-custom/scripts/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ function stop() {
77
wait $CHILD_PID
88
}
99

10-
/usr/local/bin/node $NODEOPTIONS node_modules/node-red/red.js --userDir /data $FLOWS &
10+
/usr/local/bin/node $NODE_OPTIONS node_modules/node-red/red.js --userDir /data $FLOWS &
1111

1212
CHILD_PID="$!"
1313

14-
wait "${CHILD_PID}"
14+
wait "${CHILD_PID}"

0 commit comments

Comments
 (0)