10 lines
178 B
Bash
10 lines
178 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [[ $# -eq 0 ]] ; then
|
||
|
echo "Usage: ${0} version_number (eg v1.0)"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
zip -r coolbins_v${1}.zip customize.sh META-INF module.prop system >/dev/null
|
||
|
|