mirror of
https://github.com/mgcaret/rom4x.git
synced 2024-12-21 11:29:55 +00:00
modify dist.sh
This commit is contained in:
parent
8ea78bd613
commit
ee1faf6cc7
9
dist.sh
9
dist.sh
@ -3,7 +3,14 @@
|
|||||||
rm -f "romXx_dist-*.zip"
|
rm -f "romXx_dist-*.zip"
|
||||||
ROM4X="rom4x/iic_rom4x.bin"
|
ROM4X="rom4x/iic_rom4x.bin"
|
||||||
ROM5X="rom5x/iic+_rom5x.bin"
|
ROM5X="rom5x/iic+_rom5x.bin"
|
||||||
FNAME="romXx_dist-`date --rfc-3339=date`.zip"
|
case `uname -s` in
|
||||||
|
Linux)
|
||||||
|
FNAME="romXx_dist-`date --rfc-3339=date`.zip"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
FNAME="romXx_dist-`date '+%Y-%M-%d'`.zip"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
[ -f "${ROM4X}" ] && zip "${FNAME}" "${ROM4X}"
|
[ -f "${ROM4X}" ] && zip "${FNAME}" "${ROM4X}"
|
||||||
[ -f "${ROM5X}" ] && zip "${FNAME}" "${ROM5X}"
|
[ -f "${ROM5X}" ] && zip "${FNAME}" "${ROM5X}"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user