summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index e903d4c..5eb2d00 100644
--- a/makefile
+++ b/makefile
@@ -1,9 +1,9 @@
.PHONY: deploy
deploy:
mkdir -p ./build/
- ~/bin/Godot_v3.4.4-stable_linux_headless.64 --export "HTML5" ./build/build.html
+ godot --export "HTML5" ./build/build.html
mv ./build/build.html ./build/index.html
zip -r -j build.zip ./build/*
- ~/bin/butler push ./build.zip perons/gmtk2022:html5
+ butler push ./build.zip perons/gmtk2022:html5
rm -rf ./build/
rm ./build.zip