Skip to content

Instantly share code, notes, and snippets.

@josefnpat
Created November 17, 2011 22:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josefnpat/1374781 to your computer and use it in GitHub Desktop.
Save josefnpat/1374781 to your computer and use it in GitHub Desktop.
Bash Script for Building Love2d stuff.
#!/bin/sh
# Cannot have a trailing slash. Arg 1 is folder.
cd $1
zip -r ../${PWD##*/}.love *
cd ..
cat /usr/bin/love $1.love > build_$1
chmod a+x build_$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment