From a614e9e45357b3182ca6c38ebc9a82aacf7b1e5b Mon Sep 17 00:00:00 2001 From: Brady McDonough Date: Tue, 25 Feb 2025 01:57:22 +0000 Subject: [PATCH] stdout redirect still not working for backend --- backend/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile.in b/backend/Makefile.in index 5d0da75..45c2b44 100644 --- a/backend/Makefile.in +++ b/backend/Makefile.in @@ -16,7 +16,7 @@ csv: up: .backend.lock .backend.lock: yacswa/yacswa.scm - @${ENV} @GUILE@ yacswa/yacswa.scm &> server.log & PID=$$!; echo $${PID} > .backend.lock && echo "Server spawned with PID $${PID}" && echo "Allow for a couple minutes as data is fetched and initialized." + @${ENV} @GUILE@ yacswa/yacswa.scm > server.log 2>&1 & PID=$$!; echo $${PID} > .backend.lock && echo "Server spawned with PID $${PID}" && echo "Allow for a couple minutes as data is fetched and initialized." down: @PID=`cat .backend.lock` && kill -15 $${PID} && rm .backend.lock && echo "Server on PID $${PID} down."; unset PID