From: Jason Ish Date: Mon, 10 Apr 2017 04:12:12 +0000 (-0600) Subject: template script: typo in app-layer setup script X-Git-Tag: suricata-4.0.0-beta1~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e69ce30d87f3504b9ddbf1e0c1ea6fe4c7ed6733;p=thirdparty%2Fsuricata.git template script: typo in app-layer setup script Check for ed was failing, as it was actually looking for edx. --- diff --git a/scripts/setup-app-layer.sh b/scripts/setup-app-layer.sh index f7fa1ba670..73cd89f5b8 100755 --- a/scripts/setup-app-layer.sh +++ b/scripts/setup-app-layer.sh @@ -6,7 +6,7 @@ set -e #set -x # Fail if "ed" is not available. -if ! which edx > /dev/null 2>&1; then +if ! which ed > /dev/null 2>&1; then echo "error: the program \"ed\" is required for this script" exit 1 fi