From 9b411bf05f08d94572d4e9ada163dbfa57021da8 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Thu, 16 Jun 2022 19:42:40 -0400 Subject: [PATCH] remove unnecessary error call exit 1 is enough for install_packages --- apps/Cube 2 Sauerbraten/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/Cube 2 Sauerbraten/install b/apps/Cube 2 Sauerbraten/install index d09299bfde0..daba975c751 100755 --- a/apps/Cube 2 Sauerbraten/install +++ b/apps/Cube 2 Sauerbraten/install @@ -4,7 +4,7 @@ cd ~ rm -rf download rm -rf sauerbraten -install_packages zlib1g-dev libgeoip-dev build-essential libsdl2-dev libsdl2-mixer-dev libsdl2-image-dev || error 'Install of sdl2 and opengl libraries failed!' +install_packages zlib1g-dev libgeoip-dev build-essential libsdl2-dev libsdl2-mixer-dev libsdl2-image-dev || exit 1 # as strang as it is, downloading from the 'download' name directs to a faster download server # downloading the game code and assets wget https://sourceforge.net/projects/sauerbraten/files/sauerbraten/2020_11_29/sauerbraten_2020_12_29_linux.tar.bz2/download || error 'Download failed from sourceforge.net!'