diff options
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; |