From b56566bf6389709cf82d569f246bf71a3de86074 Mon Sep 17 00:00:00 2001 From: Adam Daniels Date: Wed, 27 Feb 2013 13:58:03 -0500 Subject: [PATCH] Fix reference to $SHOESTRAP_BASE variable. Condition was always evaluating as false, and if SHOESTRAP_BASE was undefined (as per default), recipes would not be found. --- helpers/default | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/default b/helpers/default index f705a07..12b6b84 100644 --- a/helpers/default +++ b/helpers/default @@ -5,7 +5,7 @@ ############################################################################## COOKBOOK_NAME="$(basename $0)" -if [ -z "SHOESTRAP_BASE" ]; then +if [ -z "$SHOESTRAP_BASE" ]; then DIR="$( cd "$( dirname "$0" )" && pwd )" else DIR="$SHOESTRAP_BASE"