mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
abb2009af4
This removes an unneeded dependency.
10 lines
284 B
Bash
Executable file
10 lines
284 B
Bash
Executable file
#!/bin/bash -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
|
|
"
|