From 789854a9219a143e1856596309826b72ed4852d9 Mon Sep 17 00:00:00 2001 From: g0t mi1k Date: Mon, 20 Jan 2025 10:37:43 +0000 Subject: [PATCH] Add error handling when trying to create folder --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d1a2596..16f5e97 100755 --- a/build.sh +++ b/build.sh @@ -242,7 +242,8 @@ fi cd $(dirname $0) # Create image output location -mkdir -p $TARGET_DIR/$TARGET_SUBDIR +mkdir -pv $TARGET_DIR/$TARGET_SUBDIR +[ $? -eq 0 ] || failure # Don't quit on any errors now set +e