]> Sergey Matveev's repositories - public-inbox.git/blob - script/public-inbox-fetch
fetch: support --exit-code switch
[public-inbox.git] / script / public-inbox-fetch
1 #!perl -w
2 # Copyright (C) all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
4 # Wrapper to git fetch remote public-inboxes
5 use strict;
6 use v5.10.1;
7 use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev);
8 my $opt = {};
9 my $help = <<EOF; # the following should fit w/o scrolling in 80x24 term:
10 usage: public-inbox-fetch -C DESTINATION
11
12   fetch remote public-inboxes
13
14 options:
15
16   --torsocks VAL      whether or not to wrap git and curl commands with
17                       torsocks (default: `auto')
18                       Must be one of: `auto', `no' or `yes'
19   --exit-code         exit with 127 if no updates
20   --verbose | -v      increase verbosity (may be repeated)
21     --quiet | -q      increase verbosity (may be repeated)
22     -C DIR            chdir to specified directory
23 EOF
24 GetOptions($opt, qw(help|h quiet|q verbose|v+ C=s@ c=s@
25         no-torsocks torsocks=s exit-code)) or die $help;
26 if ($opt->{help}) { print $help; exit };
27 require PublicInbox::Fetch; # loads Admin
28 PublicInbox::Admin::do_chdir(delete $opt->{C});
29 PublicInbox::Admin::setup_signals();
30 $SIG{PIPE} = 'IGNORE';
31
32 my $lei = bless {
33         env => \%ENV, opt => $opt, cmd => 'public-inbox-fetch',
34         0 => *STDIN{GLOB}, 1 => *STDOUT{GLOB}, 2 => *STDERR{GLOB},
35 }, 'PublicInbox::LEI';
36 PublicInbox::Fetch->do_fetch($lei, '.');
37 exit(($lei->{child_error} // 0) >> 8);