From 9dda02d430096a45fcade21666e050ecedf5faa6 Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Tue, 23 Sep 2025 11:59:52 -0400 Subject: [PATCH] Modify restart script to overwrite log files --- .devcontainer/scripts/restart-backend.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/scripts/restart-backend.sh b/.devcontainer/scripts/restart-backend.sh index 25071523..8ca0c43e 100755 --- a/.devcontainer/scripts/restart-backend.sh +++ b/.devcontainer/scripts/restart-backend.sh @@ -14,7 +14,7 @@ PORT_DEBUG=5678 sudo killall python3 2>/dev/null || true sleep 2 -echo ''|tee -a $LOG_DIR/stdout.log $LOG_DIR/stderr.log $LOG_DIR/app.log +echo ''|tee $LOG_DIR/stdout.log $LOG_DIR/stderr.log $LOG_DIR/app.log cd "$APP_DIR"