fix depcheck script

This commit is contained in:
nullifiedcat 2017-12-11 18:12:37 +03:00
parent 0a8a498f7e
commit 141a02f1f1

View File

@ -65,7 +65,7 @@ check_all_deps ()
$DIALOG --title "Error: missing header" --msgbox "It appears that you don't have header '$(cat $STATUS_MISSING)' installed. Please install it and try again." 8 78
BAD=1
fi
if [ BAD == 1 ]; then
if [ $BAD == 1 ]; then
$DIALOG --title "Failure" --msgbox "It looks like you need to install some additional libraries, you can do that from main menu." 8 78
else
$DIALOG --title "Success" --msgbox "You have all the libraries you need to build and use cathook!" 7 68