diff options
author | Ian Lynagh <igloo@earth.li> | 2011-12-12 21:03:26 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-12-12 23:45:28 +0000 |
commit | 77c9cf6bed68ab5d9e8c3f2b4271d203e43ee5c0 (patch) | |
tree | 851814698a737329ab80b8b24fd09b00f09cd172 /sync-all | |
parent | 8792391edd7e274670627aadd689dd23cf061f99 (diff) | |
download | haskell-77c9cf6bed68ab5d9e8c3f2b4271d203e43ee5c0.tar.gz |
Add diff command to sync-all
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -389,6 +389,10 @@ sub scmall { scm ($localpath, $scm, "grep", @args) unless $scm eq "darcs"; } + elsif ($command =~ /^diff$/) { + scm ($localpath, $scm, "diff", @args) + unless $scm eq "darcs"; + } elsif ($command =~ /^clean$/) { scm ($localpath, $scm, "clean", @args) unless $scm eq "darcs"; @@ -496,6 +500,7 @@ any extra arguments to git: clean commit config + diff fetch format-patch gc |