From 157229466b26d89a19f7ef18aac615a3ddb3e4e7 Mon Sep 17 00:00:00 2001 From: Sarah Schulte Date: Wed, 8 Nov 2023 09:40:44 -0800 Subject: [PATCH] bug: correctly terminate session cookie header --- core.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.sh b/core.sh index 406d2fa..ddcdb08 100755 --- a/core.sh +++ b/core.sh @@ -30,7 +30,7 @@ respond() { printf "HTTP/1.1 %s %s\r\n" "$CODE" "$*" header Server "bash-stack ${VERSION:-devbuild}" [[ ! -z "$SESSION_HEADER_TO_BE_WRITTEN" ]] && \ - printf "%s" "$SESSION_HEADER_TO_BE_WRITTEN" + printf "%s\n" "$SESSION_HEADER_TO_BE_WRITTEN" }