mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 09:24:26 +03:00
35 lines
787 B
Bash
Executable File
35 lines
787 B
Bash
Executable File
#!/bin/bash
|
|
# Run from ~/Downloads. Work around Github Actions annoyances.
|
|
|
|
set -e
|
|
|
|
VERSION=$1
|
|
if [ "$VERSION" == "" ]; then
|
|
echo You forgot to pass version
|
|
exit 1
|
|
fi
|
|
|
|
echo y | unzip abst_linux.zip
|
|
unzip abst_linux.zip
|
|
rm -f abst_linux.zip
|
|
mv abst_linux abstreet_linux_$VERSION
|
|
|
|
echo y | unzip abst_mac.zip
|
|
unzip abst_mac.zip
|
|
rm -f abst_mac.zip
|
|
mv abst_mac abstreet_mac_$VERSION
|
|
|
|
cp -Rv abstreet_mac_$VERSION abstreet_windows_$VERSION
|
|
cd abstreet_windows_$VERSION
|
|
rm -f play_abstreet.sh
|
|
cp ~/abstreet/release/play_abstreet.bat .
|
|
cd game
|
|
rm -f game
|
|
unzip ~/Downloads/game_exe.zip
|
|
rm -f ~/Downloads/game_exe.zip
|
|
cd ../..
|
|
|
|
zip -r abstreet_linux_$VERSION abstreet_linux_$VERSION
|
|
zip -r abstreet_mac_$VERSION abstreet_mac_$VERSION
|
|
zip -r abstreet_windows_$VERSION abstreet_windows_$VERSION
|