build-appimage-docker.sh: Replace wget with curl

This removes an unneeded dependency.
This commit is contained in:
Margen67 2022-03-09 12:33:27 -08:00
parent 82ee210c29
commit abb2009af4
2 changed files with 2 additions and 2 deletions

View File

@ -5,6 +5,6 @@ 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 wget libcairo2
apt-get install -y libcairo2
scripts/linux/build-appimage.sh
"

View File

@ -32,7 +32,7 @@ cmake "$REPO_ROOT" -DCMAKE_INSTALL_PREFIX=/usr -G Ninja -DCMAKE_BUILD_TYPE=Relea
ninja -k0
DESTDIR=AppDir ninja install
wget https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
curl -fLO https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
chmod +x linuxdeploy*.AppImage
./linuxdeploy*.AppImage --appimage-extract-and-run --appdir AppDir/ --output appimage