template script: typo in app-layer setup script

Check for ed was failing, as it was actually looking for edx.
pull/2661/head
Jason Ish 8 years ago committed by Victor Julien
parent cee5c9fa60
commit e69ce30d87

@ -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

Loading…
Cancel
Save