Skip to content

Instantly share code, notes, and snippets.

@natrim
natrim / convert.sh
Last active April 27, 2024 20:01
Simple conversion script that converts Godot html5 export to gzipped version, with decompressing wasm and pck files using pako
#!/bin/bash
### usage ./convert.sh game
## where game is baseName of the export
if [ ! "$1" ]; then
read -p 'Game name: ' game
else
game="$1"
fi