From cef06a82a68e70d6a139b388ce1774d2eb1bff40 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 24 Jan 2021 18:48:24 +0200 Subject: [PATCH] =?UTF-8?q?abra-commands.sh=20=E2=86=92=20abra.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abra | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/abra b/abra index 7a6cbe1..4eef435 100755 --- a/abra +++ b/abra @@ -402,10 +402,10 @@ fi ###### Run-time loading load_custom_commands() { - if [ -f abra-commands.sh ]; then + if [ -f abra.sh ]; then # shellcheck disable=SC1091 - source abra-commands.sh - info "Loading custom commands from abra-commands.sh" + source abra.sh + info "Loading custom commands from abra.sh" fi if [ -n "$abra__app_" ]; then @@ -414,10 +414,10 @@ load_custom_commands() { require_app_latest "$TYPE" fi - if [ -f "$APP_DIR/abra-commands.sh" ]; then - info "Loading custom commands from $APP_DIR/abra-commands.sh" + if [ -f "$APP_DIR/abra.sh" ]; then + info "Loading custom commands from $APP_DIR/abra.sh" # shellcheck disable=SC1090,SC1091 - source "$APP_DIR/abra-commands.sh" + source "$APP_DIR/abra.sh" fi }