From 87353625809c4bffb8dd8f3d93a26ee5fd792501 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Mon, 28 Sep 2020 15:02:18 +0200 Subject: [PATCH] Load custom commands from $ABRA_STACK_DIR too --- abra | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/abra b/abra index 51d62fb..8d90212 100755 --- a/abra +++ b/abra @@ -147,6 +147,11 @@ if [ -f abra-commands.sh ]; then source abra-commands.sh fi +if [ -f "$ABRA_STACK_DIR/abra-commands.sh" ]; then + # shellcheck disable=SC1090 + source "$ABRA_STACK_DIR/abra-commands.sh" +fi + ###### Global help sub_help() {