Commit 72594ea4 authored by Vincent Driessen's avatar Vincent Driessen

Merge branch 'feature/convert-slashes' into develop

parents b4626cb1 083a588d
......@@ -10,6 +10,8 @@ Release date: **not yet**
* Various minor bug fixes related to internal argument passing
* Better support for Windows users.
* Add package installers for the Debian and Windows platforms.
0.4.1:
......
......@@ -42,7 +42,9 @@ if [ "$DEBUG" = "yes" ]; then
set -x
fi
export GITFLOW_DIR=$(dirname "$0")
# 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')")
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