From cbfb40a09906e5e0583f16a89f49293e597a6a67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Mon, 12 Sep 2022 07:02:12 +0000 Subject: [PATCH] fix web deploy --- web/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/deploy.sh b/web/deploy.sh index 50345b5..d027b80 100755 --- a/web/deploy.sh +++ b/web/deploy.sh @@ -28,14 +28,14 @@ fi web/build.sh # Package all assets -if [ ! -f "build_web/eco2d.html" ]; then +if [ ! -f "build_web/index.html" ]; then echo "Build data not found. Compilation errors?" exit 1 fi -mkdir deploy_web +mkdir -p deploy_web cp build_web/eco2d.* deploy_web/ -cp buiid_web/index.html deploy_web/ +cp build_web/index.html deploy_web/ # Deploy to itch.io ./butler/butler push deploy_web/ zaklaus/eco2d:html-latest