From e9ba407d3842d18ae85fcc27708ceeb35b9ad6b3 Mon Sep 17 00:00:00 2001 From: Ian Lynagh <igloo@earth.li> Date: Tue, 9 Aug 2011 21:45:06 +0100 Subject: [PATCH] Tell sync-all about the "tag" command --- sync-all | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sync-all b/sync-all index b73581035e96..cda26b00f786 100755 --- a/sync-all +++ b/sync-all @@ -401,6 +401,9 @@ sub scmall { scm ($localpath, $scm, "config", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^tag$/) { + scm ($localpath, $scm, "tag", @args); + } else { die "Unknown command: $command"; } -- GitLab