mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 18:31:59 -05:00
Change ninja options to less verbosity, continue on error (#10652)
This commit is contained in:
parent
b9a61c0a3a
commit
1fff7f17d9
2 changed files with 2 additions and 2 deletions
|
@ -33,5 +33,5 @@ else
|
|||
if [[ "$TESTPAINT" == "true" ]]; then
|
||||
testpaint_target=testpaint
|
||||
fi
|
||||
ninja -v $testpaint_target all install
|
||||
ninja -k0 $testpaint_target all install
|
||||
fi
|
||||
|
|
|
@ -32,7 +32,7 @@ export VERSION=$(cd "$REPO_ROOT" && git describe --tags)
|
|||
#see https://docs.appimage.org/packaging-guide/from-source/index.html for more information
|
||||
cmake "$REPO_ROOT" -DCMAKE_INSTALL_PREFIX=/usr -G Ninja -DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
ninja -v
|
||||
ninja -k0
|
||||
DESTDIR=AppDir ninja install
|
||||
|
||||
wget https://github.com/TheAssassin/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
||||
|
|
Loading…
Reference in a new issue