Skip to content

Commit

Permalink
start.sh: fix exec statement
Browse files Browse the repository at this point in the history
It should not have a space.

Signed-off-by: David Caro <me@dcaro.es>
  • Loading branch information
david-caro committed Mar 7, 2024
1 parent 797088a commit 195a65f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ DEST_DIR="/layers/heroku_php/wikibots/public_html"
## Otherwise they will be sent to stdout/stderr
[[ "$TOOL_DATA_DIR" != "" ]] && {
# shellcheck disable=SC2093
exec 1 >> "$TOOL_DATA_DIR/access.log"
exec 2 >> "$TOOL_DATA_DIR/error.log"
exec 1>> "$TOOL_DATA_DIR/access.log"
exec 2>> "$TOOL_DATA_DIR/error.log"
}

python \
Expand Down

0 comments on commit 195a65f

Please sign in to comment.