if no downloader is found, print proper error message.

This commit is contained in:
Jörg Thalheim 2022-12-14 13:29:17 +01:00
parent d9b5dac3a2
commit 63bb08e6a3

View File

@ -158,7 +158,7 @@ fetch(){
elif command -v wget >/dev/null 2>&1; then
wget "\$1" -O-
else
echo "no downloader (curl or wget) found, bailing out"
echo "no downloader (curl or wget) found, bailing out" >&2
exit 1
fi
}