Updates to version 0.6.1:

- Changed version number.
- verify-mod-downloads now ignores comment lines (beginning with #).
- Removed Twilight Forest mod from build.
- Technic Pack resource files are now in Markdown, mirroring changes on site.
This commit is contained in:
Eric J. Bowersox
2017-05-27 13:35:58 -06:00
parent 4588438d26
commit ec26141bb4
6 changed files with 144 additions and 142 deletions

View File

@@ -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";