Skip to content

Instantly share code, notes, and snippets.

View hanfil's full-sized avatar

Filip Fog hanfil

  • Data-Equipment-AS
  • Norway
View GitHub Profile
@hanfil
hanfil / convert.sh
Last active March 11, 2022 06:50 — forked from natrim/convert.sh
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