From 58a4eab9c54576e4bd26f0d8c3fb0ff16585b1e2 Mon Sep 17 00:00:00 2001 From: Luna Date: Thu, 31 May 2018 02:00:57 -0400 Subject: [PATCH] Add utility to easily put installers into prod --- util/copy-installer-exports.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 util/copy-installer-exports.sh diff --git a/util/copy-installer-exports.sh b/util/copy-installer-exports.sh new file mode 100644 index 0000000..06690af --- /dev/null +++ b/util/copy-installer-exports.sh @@ -0,0 +1,11 @@ +echo "Make sure you've run util/export-installers.sh; it's not run by this script." +# mac: already zipped ("app") +cp release/installer/mac/vanagloria.zip ~/src/cosine-gaming/static/vanagloria/vanagloria-mac.zip +# Zip and move at the same time +# However zip will update instead of replace if allowed to. -FS prevents that (We want fresh af) +# We also specify -j because we want the files as immediate as possible +# x11 +zip -FSrj ~/src/cosine-gaming/static/vanagloria/vanagloria-x11.zip release/installer/x11/ +# windows +zip -FSrj ~/src/cosine-gaming/static/vanagloria/vanagloria-win.zip release/installer/win/ +