Make pkg error explanation a bit clearer for new users #12

Closed
Mayurifag wants to merge 1 commits from better-pkg-error-explanation into master
+1 -1
View File
@@ -18,7 +18,7 @@ function check_requirements() {
for req in ${reqs[*]}; do
if ! command -v "$req" > /dev/null;
then
echo "${bold} == ERROR: $req is required but not found ==${normal}"
echo "${bold} == ERROR: $req package is required in your system, but not found ==${normal}"
exit 104
fi
done