From 827ddfb5d2a5046353f1473a1855048afce46ec1 Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Mon, 22 Aug 2022 14:28:25 +0000 Subject: [PATCH] Update web script to handle headless web servers. Co-authored-by: sigonasr2 --- C++/scripts/md5 | 2 +- C++/scripts/web.sh | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/C++/scripts/md5 b/C++/scripts/md5 index 9403698..36cf76a 100644 --- a/C++/scripts/md5 +++ b/C++/scripts/md5 @@ -1,3 +1,3 @@ build.sh:530634457ea9041267c05d4ced95eee1 - commit.sh:d03a46e721060c22ccb146e19d27e70a - -web.sh:3fdcf079bbabf079cc24c32fa7133c40 - +web.sh:3229cb0053cd0ca4ea08cc90e0d50ad0 - diff --git a/C++/scripts/web.sh b/C++/scripts/web.sh index d00e5ca..0ff35a6 100755 --- a/C++/scripts/web.sh +++ b/C++/scripts/web.sh @@ -6,4 +6,9 @@ else em++ -std=c++17 -O2 -s ALLOW_MEMORY_GROWTH=1 -s MAX_WEBGL_VERSION=2 -s MIN_WEBGL_VERSION=2 -s USE_LIBPNG=1 $(find . -type f -name "*.cpp") -o ${PROJECT_NAME}.html -I pixelGameEngine.h fi -emrun ${PROJECT_NAME}.html +if [ "$1" == "headless" ]; then + echo "Running as headless web server" + emrun --no_browser ${PROJECT_NAME}.html +else + emrun --serve_after_close ${PROJECT_NAME}.html +fi