nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

maintainers/fix-maintainers.pl: error on unset GH_TOKEN

+4
+4
maintainers/scripts/fix-maintainers.pl
··· 13 13 14 14 my $ua = LWP::UserAgent->new(); 15 15 16 + if (!defined $ENV{GH_TOKEN}) { 17 + die "Set GH_TOKEN before running this script"; 18 + } 19 + 16 20 keys %$maintainers_json; # reset the internal iterator so a prior each() doesn't affect the loop 17 21 while(my($k, $v) = each %$maintainers_json) { 18 22 my $current_user = %$v{'github'};