diff options
Diffstat (limited to 'scripts/nix-pull')
-rw-r--r-- | scripts/nix-pull | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-pull b/scripts/nix-pull index 6404cb79a17a..320322585364 100644 --- a/scripts/nix-pull +++ b/scripts/nix-pull @@ -31,7 +31,7 @@ while (<CONFFILE>) { my $fn = $1; next if $fn =~ /\.\./; next if $fn =~ /\//; - next unless $fn =~ /-([0-9a-z]{32})(-s-([0-9a-z]{32}))?\.nar/; + next unless $fn =~ /-([0-9a-z]{32})(-s-([0-9a-z]{32}))?\.nar.bz2$/; my $hash = $1; my $fshash = $3; |