Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
executable file 15 lines (14 sloc) 259 Bytes
#!/bin/bash
zip -r reskue.love *.* Textures Levels Sounds
exec python3 <<END_OF_PYTHON
import sys
file=open('build.ini','r');
a=file.read();
a=int(a);
a=a+int(1);
file.close();
file=open('build.ini','w');
a=str(a);
file.write(a);
file.close();
sys.exit (0);