mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
2e8c16e028
Move parameters from shebang back into set. Add set -e to setenv and vstool for consistency.
19 lines
598 B
Bash
Executable file
19 lines
598 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo -e "\033[0;36mBuilding AppImage for OpenRCT2...\033[0m"
|
|
|
|
# Ensure we are in root directory
|
|
basedir="$(readlink -f `dirname $0`/..)"
|
|
cd $basedir
|
|
|
|
linuxdeploy=/tmp/linuxdeploy-x86_64.AppImage
|
|
curl -fLo $linuxdeploy https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
|
chmod +x $linuxdeploy
|
|
pushd bin
|
|
$linuxdeploy --appimage-extract-and-run --appdir install/ --output appimage --desktop-file install/usr/share/applications/openrct2.desktop
|
|
popd
|
|
mkdir -p artifacts
|
|
mv bin/OpenRCT2*.AppImage artifacts
|
|
rm $linuxdeploy
|