shellcheck tweaks

This commit is contained in:
fred 2025-06-18 09:47:16 -07:00
parent fa119a8d4f
commit d7accc8c69
3 changed files with 13 additions and 12 deletions

View file

@ -10,6 +10,6 @@ find_or_open(){
fi
}
if [[ ! -z $1 ]]; then
find_or_open $1
if [[ -n $1 ]]; then
find_or_open "$1"
fi