Skip to content

Instantly share code, notes, and snippets.

View LockyBounty's full-sized avatar
:octocat:
Focusing

Locky LockyBounty

:octocat:
Focusing
View GitHub Profile
@natrim
natrim / convert.sh
Last active June 18, 2024 15:13
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