mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
The trailing slash is important enough to put it here directly since when it's
missing from the PIPE_DIR definition above, the application won't start and doesn't log any thing to the expected locations.
This commit is contained in:
parent
8ebbffafe6
commit
0df95cc7f2
1 changed files with 2 additions and 1 deletions
|
@ -58,7 +58,8 @@ case "$1" in
|
|||
fi
|
||||
export HEART_COMMAND="$RUNNER_BASE_DIR/bin/$SCRIPT start"
|
||||
mkdir -p $PIPE_DIR
|
||||
$ERTS_PATH/run_erl -daemon $PIPE_DIR $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console" 2>&1
|
||||
# Note the trailing slash on $PIPE_DIR/
|
||||
$ERTS_PATH/run_erl -daemon $PIPE_DIR/ $RUNNER_LOG_DIR "exec $RUNNER_BASE_DIR/bin/$SCRIPT console" 2>&1
|
||||
;;
|
||||
|
||||
stop)
|
||||
|
|
Loading…
Reference in a new issue