From 2b95019b628043bb0718b9280c344fbcf5581768 Mon Sep 17 00:00:00 2001 From: mboelen Date: Thu, 3 Mar 2016 12:50:43 +0100 Subject: [PATCH] Use proper variable for cURL --- include/helper_audit_dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/helper_audit_dockerfile b/include/helper_audit_dockerfile index 31390c25..268e9de4 100644 --- a/include/helper_audit_dockerfile +++ b/include/helper_audit_dockerfile @@ -126,7 +126,7 @@ InsertSection "Basics" logtext "Checking usage of cURL" FIND_CURL=`grep curl ${AUDIT_FILE}` - if [ ! "${FIND_WGET}" = "" ]; then + if [ ! "${FIND_CURL}" = "" ]; then Display --indent 4 --text "Download tool" --result "curl" FILE_DOWNLOAD=1 fi