diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-10-28 09:39:16 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-10-28 09:39:16 -0400 |
commit | 1371463daaaab7465e3f353848d55ca2cff74d19 (patch) | |
tree | 7e1ec2b68154e9d89897a45ec4b679eb80709fcc | |
parent | 0bbf9bae9275b403efb4994ef84baf0d35e1d9cf (diff) |
Use game name for the zip file.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -1,3 +1,3 @@ /game.wasm -/algj2023.zip /level.scm +/strigoform.zip @@ -5,7 +5,8 @@ level.scm: level.tmx compile-map.scm guile compile-map.scm > level.scm bundle: - rm algj2023.zip && zip algj2023.zip -r audio/ images/*.png js-runtime/ boot.js game.css game.wasm index.html + rm strigoform.zip || true + zip strigoform.zip -r audio/ images/*.png js-runtime/ boot.js game.css game.wasm index.html serve: guile web-server |