Skip Menu |

This queue is for tickets about the Dist-Zilla-Plugin-Git CPAN distribution.

Report information
The Basics
Id: 78075
Status: resolved
Priority: 0/
Queue: Dist-Zilla-Plugin-Git

People
Owner: Nobody in particular
Requestors: CELOGEEK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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.
I believe this has been addressed. -- rjbs
Le Jeu 28 Juin 2012 21:02:21, RJBS a écrit : Show quoted text
> I believe this has been addressed.
Where ? which version fix it ? Actually the last version still has the bug.
Subject: Re: [rt.cpan.org #78075] CommitBuild use bad echo command
Date: Fri, 29 Jun 2012 11:37:27 -0400
To: Celogeek Hacker via RT <bug-Dist-Zilla-Plugin-Git [...] rt.cpan.org>
From: Ricardo Signes <rjbs [...] cpan.org>
* Celogeek Hacker via RT <bug-Dist-Zilla-Plugin-Git@rt.cpan.org> [2012-06-29T10:23:08] Show quoted text
> Where ? which version fix it ? > Actually the last version still has the bug.
Dist-Zilla-Plugin-Git-1.121811.tar.gz -- rjbs
Le Ven 29 Juin 2012 11:37:41, RJBS a écrit : Show quoted text
> * Celogeek Hacker via RT <bug-Dist-Zilla-Plugin-Git@rt.cpan.org> > [2012-06-29T10:23:08]
> > Where ? which version fix it ? > > Actually the last version still has the bug.
> > Dist-Zilla-Plugin-Git-1.121811.tar.gz >
Oh ok, thanks. I confirm, it work :)