aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xguix-container.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/guix-container.sh b/guix-container.sh
index 65e3a63..2430d8a 100755
--- a/guix-container.sh
+++ b/guix-container.sh
@@ -86,9 +86,9 @@ start() {
mkdir -p "$(dirname "$LOG_DIR")"
mkdir --mode=700 -p "$LOG_DIR"
- "$EXECUTABLE" $HTTP_DIR_SHARE_OPT \
- > "$LOG_DIR"/stdout.log \
- 2> "$LOG_DIR"/stderr.log &
+ "$EXECUTABLE" $HTTP_DIR_SHARE_OPT \
+ >> "$LOG_DIR"/stdout.log \
+ 2>> "$LOG_DIR"/stderr.log &
GUILE_PID=$!
WAIT_TIME=0