Skip to content

Commit

Permalink
Oops, forgot about spaces in the dirname.
Browse files Browse the repository at this point in the history
Quite likely for Windows users to hit this problem.
  • Loading branch information
nvie committed Dec 1, 2011
1 parent 4b9545e commit 5e8cc9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-flow
Expand Up @@ -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 <subcommand>"
Expand Down

0 comments on commit 5e8cc9f

Please sign in to comment.