diff options
author | Ian Lynagh <igloo@earth.li> | 2011-07-08 14:48:06 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-07-08 14:48:06 +0100 |
commit | aa39056860a47026b253469f56d623dc6a25e196 (patch) | |
tree | effbdb590dd9d6e012350854abbb13afe889f326 /sync-all | |
parent | 85016d31bed8c051552e9fa67f33a260954452c8 (diff) | |
download | haskell-aa39056860a47026b253469f56d623dc6a25e196.tar.gz |
Fix "./sync-all get"
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -316,7 +316,9 @@ sub scmall { scm (".", $scm, "get", $get_mode, $path, $localpath, @args); } else { - scm (".", $scm, "clone", $path, $localpath, @args, $bare_flag); + my @argsWithBare = @args; + push @argsWithBare, $bare_flag if $bare_flag; + scm (".", $scm, "clone", $path, $localpath, @argsWithBare); scm ($localpath, $scm, "config", "core.ignorecase", "true"); } next; |