Skip to content

Commit

Permalink
There is a second line in the Case UCO project.properties file that n…
Browse files Browse the repository at this point in the history
…eeds to have its version number fixed.
  • Loading branch information
esaunders committed Jul 8, 2020
1 parent 175dc42 commit 9a4696d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions release/release-unix.pl
Original file line number Diff line number Diff line change
Expand Up @@ -578,15 +578,19 @@ ()
print CONF_OUT "file.reference.sleuthkit-${VER}.jar=lib\/sleuthkit-${VER}.jar\n";
$found++;
}
elsif (/\$\{file.reference.sleuthkit\-\d+.\d+.\d+.jar\}/) {
print CONF_OUT "\$\{file.reference.sleuthkit-${VER}.jar\}\n";
$found++;
}
else {
print CONF_OUT $_;
}
}
close (CONF_IN);
close (CONF_OUT);

if ($found != 1) {
die "Error: Found $found (instead of 1) occurrences of jar file in case-uco/java/nbproject/project.properties";
if ($found != 2) {
die "Error: Found $found (instead of 2) occurrences of jar file in case-uco/java/nbproject/project.properties";
}

unlink ($IFILE) or die "Error deleting $IFILE";
Expand Down

0 comments on commit 9a4696d

Please sign in to comment.