diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-09 14:42:08 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-09 14:42:08 +0100 |
commit | b1001917414ef857acaf864150f8b8fdec8bbfbe (patch) | |
tree | 5eef119470aaf0227300e7c3a7d73871e48daf77 /sync-all | |
parent | 3783ffa6f7203db3d80ff6c75fff8d79b0b852a7 (diff) | |
download | haskell-b1001917414ef857acaf864150f8b8fdec8bbfbe.tar.gz |
Add "./sync-all config" command
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -361,6 +361,9 @@ sub scmall { # Hack around 'git grep' failing if there are no matches $ignore_failure = 1; } + elsif ($command =~ /^config$/) { + @scm_args = "config"; + } else { die "Unknown command: $command"; } @@ -416,6 +419,7 @@ Supported commands: * remote rm <branch-name> * remote set-url [--push] <branch-name> * grep + * config Available package-tags are: END |