From 141a02f1f15c00e755a30602b2a8f7516d811426 Mon Sep 17 00:00:00 2001 From: nullifiedcat Date: Mon, 11 Dec 2017 18:12:37 +0300 Subject: [PATCH] fix depcheck script --- scripts/depcheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/depcheck b/scripts/depcheck index c7e7ac6f..f0d9e6ba 100755 --- a/scripts/depcheck +++ b/scripts/depcheck @@ -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