From c72a7835da61a451be117a3d16ae4225ce82406d Mon Sep 17 00:00:00 2001 From: anaxios Date: Wed, 7 Aug 2024 03:54:16 -0700 Subject: [PATCH] Title: Improve script robustness Content: Switch from set -eu to set -e for more robust error handling --- aicommit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aicommit b/aicommit index d9a0086..a3a80f4 100755 --- a/aicommit +++ b/aicommit @@ -1,5 +1,5 @@ #!/bin/bash -set -eu +set -e ARGS=("${@-}")