Skip to content

Commit

Permalink
Add -e to bash's echo command so \t and \n work again.
Browse files Browse the repository at this point in the history
  • Loading branch information
lingo authored and JohnAlbin committed Sep 6, 2011
1 parent fd28951 commit 145d38a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-svn-migrate.sh
Expand Up @@ -112,8 +112,8 @@ until [[ -z "$1" ]]; do
ignore-file ) ignore_file=$value;;
no-minimize-url ) gitsvn_params="$gitsvn_params --no-minimize-url";;

h ) echo $help | less >&2; exit;;
help ) echo $help | less >&2; exit;;
h ) echo -e $help | less >&2; exit;;
help ) echo -e $help | less >&2; exit;;

* ) echo "Unknown option: $option\n$usage" >&2; exit 1;;
esac
Expand Down

0 comments on commit 145d38a

Please sign in to comment.