Skip to content

Commit

Permalink
fix a bug in the ash-template (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
stew authored and muuki88 committed Oct 30, 2016
1 parent bbeead2 commit d9bd270
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ realpath () {
COUNT=$(($COUNT + 1))
done

if [ "$TARGET_FILE" == "." -o "$TARGET_FILE" == ".." ]; then
if [ "$TARGET_FILE" = "." -o "$TARGET_FILE" = ".." ]; then
cd "$TARGET_FILE"
TARGET_FILEPATH=
else
Expand Down

0 comments on commit d9bd270

Please sign in to comment.