You've already forked OpenRCT2-Unity
mirror of
https://github.com/izzy2lost/OpenRCT2-Unity.git
synced 2026-03-10 12:38:22 -07:00
Move parameters from shebang back into set. Add set -e to setenv and vstool for consistency.
13 lines
297 B
Bash
Executable File
13 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
REPO_ROOT=$(readlink -f $(dirname "$0")/../..)
|
|
|
|
docker run --rm -it -e NO_CLEANUP=1 -e CI=1 --device /dev/fuse:mrw -v $(readlink -f .):/ws openrct2/openrct2:ubuntu_amd64 bash -exc "
|
|
cd /ws
|
|
apt-get update
|
|
apt-get install -y libcairo2
|
|
scripts/linux/build-appimage.sh
|
|
"
|