diff options
author | Fabien Tassin <fta@sofaraway.org> | 2008-08-31 14:31:07 +0200 |
---|---|---|
committer | Fabien Tassin <fta@sofaraway.org> | 2008-08-31 14:31:07 +0200 |
commit | 4d4c5db9b5f9fbc68e8a83f378f7bc6b3ce9804d (patch) | |
tree | 5ceed951762a1d6e14a594e1e366c296d7946237 | |
parent | f4678f22028611c1576f58109659e674b4669364 (diff) |
* [mozclient] fix Mercurial tags not passed during checkout
- update src/mozclient/lib/MozClient/Mercurial.pm
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | src/mozclient/lib/MozClient/Mercurial.pm | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 7cd87dd..4d3b3a6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ mozilla-devscripts (0.10) UNRELEASED; urgency=low * Change Recommends into Suggests for cvs and mercurial as those are not needed to use mozilla-devscripts as a build-dependency. - update debian/control + * [mozclient] fix Mercurial tags not passed during checkout + - update src/mozclient/lib/MozClient/Mercurial.pm [ Alexander Sack <asac@ubuntu.com> ] * inject awesome-browser branding into firefox source tree by diff --git a/src/mozclient/lib/MozClient/Mercurial.pm b/src/mozclient/lib/MozClient/Mercurial.pm index 95176c9..45fcbbc 100644 --- a/src/mozclient/lib/MozClient/Mercurial.pm +++ b/src/mozclient/lib/MozClient/Mercurial.pm @@ -78,8 +78,8 @@ sub checkout { $self->{'MOZCLIENT_PROJECT'}, $module); } } - my $cmd = sprintf "hg clone %s %s %s", $self->{'mozclient_date'}, - join(" ", @$modules), $self->{'MOZCLIENT_MOZDIRNAME'}; + my $cmd = sprintf "hg clone %s %s %s %s", $self->{'mozclient_date'}, + $self->{'co_tag'}, join(" ", @$modules), $self->{'MOZCLIENT_MOZDIRNAME'}; $self->run_system($cmd); $self->chdir(".."); } |