From 5e8cc9fceb509848dee2cd62e98aadc29ffa146b Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Thu, 1 Dec 2011 08:52:33 +0100 Subject: [PATCH] Oops, forgot about spaces in the dirname. Quite likely for Windows users to hit this problem. --- git-flow | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-flow b/git-flow index 004aa2eee..a03ba1fd3 100755 --- a/git-flow +++ b/git-flow @@ -44,7 +44,7 @@ fi # The sed expression here replaces all backslashes by forward slashes. # This helps our Windows users, while not bothering our Unix users. -export GITFLOW_DIR=$(dirname $(echo "$0" | sed -e 's,\\,/,g')) +export GITFLOW_DIR=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')") usage() { echo "usage: git flow "