diff options
author | Ian Lynagh <igloo@earth.li> | 2012-02-02 21:38:29 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-02-02 23:10:36 +0000 |
commit | bc9f8b0b13d7eda8f636dc01ee686a2abe6b7b88 (patch) | |
tree | 6b7a79c380796683446f0d2283bc8191c7286396 /sync-all | |
parent | bbe2d21a110f2eb3f3c3c06536816bd28179f38d (diff) | |
download | haskell-bc9f8b0b13d7eda8f636dc01ee686a2abe6b7b88.tar.gz |
Add a "tag" command to sync-all
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -421,6 +421,9 @@ sub scmall { scm ($localpath, $scm, "gc", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^tag$/) { + scm ($localpath, $scm, "tag", @args); + } else { die "Unknown command: $command"; } @@ -514,6 +517,7 @@ any extra arguments to git: reset send status + tag -------------- Flags ------------------- These flags are given *before* the command and modify the way sync-all behaves. |