Shell scripts: fix bare variables

This makes my IDE a bit more silent :-)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2019-01-10 02:50:47 +01:00
parent c3650770cc
commit 37498f009d
24 changed files with 65 additions and 66 deletions

View File

@@ -26,5 +26,5 @@ if [ ! -f "${dir}/${bin}.installer" ]; then
exit 1
fi
. $dir/$bin.installer
install_$bin "$@"
. ${dir}/${bin}.installer
install_${bin} "$@"