mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 15:56:32 +00:00
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.
This commit is contained in:
parent
153bfb1bd7
commit
b56566bf63
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user