diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-07 22:31:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 22:31:04 +0200 |
commit | d4398f40214fb6175e2bff4c5823e0e6ca13fbda (patch) | |
tree | 4a30a5fbe7d758f8693897af93ece154f90ae606 /scripts/genappimage.sh | |
parent | 2d78e656b715119ca11d131a1a932f22f1b4ad36 (diff) | |
download | rneovim-d4398f40214fb6175e2bff4c5823e0e6ca13fbda.tar.gz rneovim-d4398f40214fb6175e2bff4c5823e0e6ca13fbda.tar.bz2 rneovim-d4398f40214fb6175e2bff4c5823e0e6ca13fbda.zip |
ci: don't automatically enable -Werror on CI environments
This catches downstream consumers of neovim off guard when using neovim in an
esoteric environment not tested in our own CI.
Closes https://github.com/neovim/neovim/issues/22932
Diffstat (limited to 'scripts/genappimage.sh')
-rwxr-xr-x | scripts/genappimage.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/genappimage.sh b/scripts/genappimage.sh index dc46f4ce17..9944b5eb31 100755 --- a/scripts/genappimage.sh +++ b/scripts/genappimage.sh @@ -26,7 +26,7 @@ APP_DIR="$APP.AppDir" ######################################################################## # Build and install nvim into the AppImage -make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_EXTRA_FLAGS="-DCI_BUILD=OFF -DCMAKE_INSTALL_PREFIX=${APP_DIR}/usr -DCMAKE_INSTALL_MANDIR=man" +make CMAKE_BUILD_TYPE=RelWithDebInfo CMAKE_EXTRA_FLAGS="-DCMAKE_INSTALL_PREFIX=${APP_DIR}/usr -DCMAKE_INSTALL_MANDIR=man" make install ######################################################################## |