1
0
Fork 0

Better format error message

This commit is contained in:
Braiden Vasco 2017-07-02 12:28:19 +00:00
parent d1e20db85a
commit ab1ac1dcc9
1 changed files with 3 additions and 1 deletions

View File

@ -19,7 +19,9 @@ dependencies_check() {
tput setaf 1 # Red color
echo 'Reqired dependencies not installed.'
echo 'This can be resolved on Debian/Raspbian systems by installing the following packages:'
echo "$missing"
for package_name in $missing; do
echo " * $package_name"
done
tput sgr0 # No color
false
fi