Skip to content

Instantly share code, notes, and snippets.

View brandy's full-sized avatar
🍑
Chillin

Brandon brandy

🍑
Chillin
View GitHub Profile
@brandy
brandy / compress.sh
Created July 1, 2023 04:32 — forked from threethan/compress.sh
Compress Godot HTML5 export with gunzip for smaller file size
#!/bin/bash
### usage ./convert.sh game
## where game is baseName of the export
# Based on https://gist.github.com/natrim/1a19f4b7668e0474897f3f28171f3b33
# wish revisions from https://gist.github.com/natrim/1a19f4b7668e0474897f3f28171f3b33?permalink_comment_id=4108811#gistcomment-4108811
if [ ! "$1" ]; then
read -p 'Game name: ' game
else