1e7e4f21ba
and redundant anyway.
17 lines
251 B
Perl
Executable file
17 lines
251 B
Perl
Executable file
#! /usr/bin/perl -w -I/home/eelco/nix/scripts
|
|
|
|
use strict;
|
|
use readmanifest;
|
|
|
|
for my $p (@ARGV) {
|
|
|
|
my %narFiles;
|
|
my %patches;
|
|
|
|
readManifest $p, \%narFiles, \%patches;
|
|
|
|
%patches = ();
|
|
|
|
writeManifest $p, \%narFiles, \%patches;
|
|
}
|