Commit 5e8cc9fc authored by Vincent Driessen's avatar Vincent Driessen

Oops, forgot about spaces in the dirname.

Quite likely for Windows users to hit this problem.
parent 4b9545e5
......@@ -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>"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment