Skip to content

Commit

Permalink
Merge branch 'feature/convert-slashes' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
nvie committed Dec 1, 2011
2 parents b4626cb + 083a588 commit 72594ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 3 additions & 1 deletion git-flow
Original file line number Diff line number Diff line change
Expand Up @@ -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>"
Expand Down

0 comments on commit 72594ea

Please sign in to comment.