Skip to content

Commit

Permalink
Merge pull request #4 from david-caro/main
Browse files Browse the repository at this point in the history
start.sh: fix exec statement
  • Loading branch information
Saisengen committed Mar 7, 2024
2 parents 797088a + 195a65f commit 65c6d2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.sh
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 65c6d2d

Please sign in to comment.