Skip to content

Commit da5c6c1

Browse files
committed
update run.sh to include stderr
1 parent 27c6f77 commit da5c6c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
33
LOGFILE="$DIR/log.txt"
4-
nohup python "$DIR/daemon.py" > $LOGFILE &
5-
nohup python "$DIR/app.py" > $LOGFILE &
4+
nohup python "$DIR/daemon.py" 2>&1 $LOGFILE &
5+
nohup python "$DIR/app.py" 2>&1 $LOGFILE &
66

0 commit comments

Comments
 (0)