From 4e9aefcafd376566e0a95c5e6f4622c7684fa1ca Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 4 Apr 2021 21:13:18 +0200 Subject: [PATCH] Appease shellcheck for app-catalogue script --- bin/app-catalogue.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bin/app-catalogue.sh b/bin/app-catalogue.sh index 9cd16df..c717979 100755 --- a/bin/app-catalogue.sh +++ b/bin/app-catalogue.sh @@ -1,5 +1,7 @@ #!/bin/bash +# shellcheck disable=SC2119 + # Usage: ./app-catalogue.sh # # Gather metadata from Co-op Cloud apps in $ABRA_DIR/apps (default @@ -8,7 +10,7 @@ stack_dir="${ABRA_DIR:-$HOME/.abra}/apps/" -cd "$stack_dir" +cd "$stack_dir" || exit # load all README files into ENV_FILES array mapfile -t readmes < <(find -L . -name "README.md")