Subject: | CommitBuild use bad echo command |
echo -ne doesn't work on all system. because /bin/sh (use by perl) isn't always a bash alias or
some feature is disactivated.
Here a quick fix :
lib/Dist/Zilla/Plugin/Git/CommitBuild.pm
173: $cmd = qq{echo -en "$cmd" | git mktree};
lib/Dist/Zilla/Plugin/Git/CommitBuild.pm
173: $cmd = qq{bash -c 'echo -en "$cmd" | git mktree'};
it should be better to use "open" command for that.