X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/a48f904fea457d33eb8f7297469945fe3c05e4c1..7cbacd59bf538bac9e5868a005be162b265e44d6:/webcheckout diff --git a/webcheckout b/webcheckout index 1238172..4841fee 100755 --- a/webcheckout +++ b/webcheckout @@ -208,8 +208,10 @@ if (! @repos) { if (defined $destdir && @repos > 1) { # create subdirs of $destdir for the multiple repos - mkdir($destdir); - chdir($destdir) || die "failed to chdir to $destdir: $!"; + if (! $noact) { + mkdir($destdir); + chdir($destdir) || die "failed to chdir to $destdir: $!"; + } $destdir=undef; }