From 6e0810c0f3827254596ee0655eb22aad3450155c Mon Sep 17 00:00:00 2001 From: Brooke Date: Sat, 9 Mar 2024 17:02:57 -0500 Subject: [PATCH] remove backgrounding, more unique port number --- bin/test_static_page.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/test_static_page.sh b/bin/test_static_page.sh index c181c18..9b18900 100644 --- a/bin/test_static_page.sh +++ b/bin/test_static_page.sh @@ -1,7 +1,7 @@ #!/bin/bash -PORT=8080 -python3 -m http.server $PORT --directory public/ & +PORT=21300 +python3 -m http.server $PORT --directory public/ SERVER_PID=$!