Add --no-window to web build script

This commit is contained in:
Luke Hubmayer-Werner 2023-12-06 22:25:58 +10:30
parent 82a25de4ea
commit ced909bae4
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ TARGET="ufeff.net:~/ChocolateBird/"
mkdir -p "$BUILD_FOLDER"
echo Exporting debug to "$BUILD_TARGET_DEBUG"
godot3 --export-debug HTML5 "$BUILD_TARGET_DEBUG"
godot3 --no-window --export-debug HTML5 "$BUILD_TARGET_DEBUG"
echo Exporting release to "$BUILD_TARGET_RELEASE"
godot3 --export HTML5 "$BUILD_TARGET_RELEASE"
godot3 --no-window --export HTML5 "$BUILD_TARGET_RELEASE"
echo Uploading to "$TARGET"
rsync --recursive --times --compress --progress "$BUILD_FOLDER" "$TARGET"