X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=script%2Fpublic-inbox-clone;fp=script%2Fpublic-inbox-clone;h=22ffc0fcded1309610b55ddc08ec1a11b0745542;hp=ce4697f3917edd655a925561b71e11ea08c2664f;hb=1c3d7bd75e2c6f84bd511a17838fa9113c98578c;hpb=74fe3d0dc688202adc634cfc6a9e57f1aa28d85d diff --git a/script/public-inbox-clone b/script/public-inbox-clone index ce4697f3..22ffc0fc 100755 --- a/script/public-inbox-clone +++ b/script/public-inbox-clone @@ -17,12 +17,13 @@ options: --torsocks VAL whether or not to wrap git and curl commands with torsocks (default: `auto') Must be one of: `auto', `no' or `yes' + --dry-run | -n show what would be cloned without cloning --verbose | -v increase verbosity (may be repeated) --quiet | -q increase verbosity (may be repeated) -C DIR chdir to specified directory EOF GetOptions($opt, qw(help|h quiet|q verbose|v+ C=s@ c=s@ include|I=s@ exclude=s@ - jobs|j=i no-torsocks torsocks=s epoch=s)) or die $help; + dry-run|n jobs|j=i no-torsocks torsocks=s epoch=s)) or die $help; if ($opt->{help}) { print $help; exit }; require PublicInbox::Admin; # loads Config PublicInbox::Admin::do_chdir(delete $opt->{C}); @@ -54,6 +55,9 @@ my $mrr = bless { src => $url, dst => $dst, }, 'PublicInbox::LeiMirror'; + +$? = 0; +$mrr->{dry_run} = 1 if $lei->{opt}->{'dry-run'}; $mrr->do_mirror; $mrr->can('_wq_done_wait')->([$mrr, $lei], $$); exit(($lei->{child_error} // 0) >> 8);