Improve wording on deb conversion script

This commit is contained in:
Jason Rhinelander 2020-09-18 20:53:04 -03:00
parent 8937ba7285
commit 48e28d4c91
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,11 @@ for prog in jq curl gpg lsb_release; do
if ! which $prog &>/dev/null; then
die "Could not find '$prog' which we require for this script.
Try installing it with 'sudo apt install ${pkgnames[$prog]:-$prog}'"
Try installing it using:
sudo apt install ${pkgnames[$prog]:-$prog}
and then run this script again."
fi
done