added full list of mods and filled in the Technic Pack resource files

This commit is contained in:
2023-01-24 01:53:08 -07:00
parent 17de035a79
commit 975a7b2a18
6 changed files with 339 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/perl
# verify-mod-downloads - Checks a directory full of mod JAR files to make sure they've all been downloaded
# and advises you on where to go to get them if they're not present.
# AGRB 11/3/2015
# AGRB 1/23/2023
die "Usage: $0 directory-name\n" if $#ARGV < 0;
my $dir = $ARGV[0];
@@ -11,6 +11,7 @@ open MODLIST, "<$dir/modlist.txt" or die "$0: unable to open $dir/modlist.txt";
my $missing = 0;
while (<MODLIST>) {
chomp;
next if /^\s*#/;
($modjar, $url) = split(/\|/);
unless (-f "$dir/$modjar") {
print "$modjar is missing - download from $url\n";