From 918a062fadfd554b2dbeda2fb7c0ebcb8e826665 Mon Sep 17 00:00:00 2001 From: meoovv <296894618+meoovv@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:21:47 +1100 Subject: [PATCH] Check flutter's exit code in build script --- scripts/build-appimage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-appimage.sh b/scripts/build-appimage.sh index a770a4d3b..28f626c49 100755 --- a/scripts/build-appimage.sh +++ b/scripts/build-appimage.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -flutter build linux --release +flutter build linux --release || exit "$?" cp -r build/linux/x64/release/bundle/* appimage/Extera.AppDir cd appimage @@ -11,4 +11,4 @@ cp ../assets/logo.svg Extera.AppDir/extera.svg cp AppRun Extera.AppDir # build the AppImage -appimagetool Extera.AppDir \ No newline at end of file +appimagetool Extera.AppDir