Appease shellcheck for app-catalogue script

This commit is contained in:
decentral1se 2021-04-04 21:13:18 +02:00
parent fb338b414b
commit 4e9aefcafd
No known key found for this signature in database
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 3 additions and 1 deletions

View File

@ -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")