This commit is contained in:
Brady 2018-10-12 21:31:33 -05:00
parent d1a9012deb
commit 3958dce341
No known key found for this signature in database
GPG Key ID: 73A788379A197567
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ public class CreateDistTask extends BaritoneGradleTask {
.map(path -> sha1(path) + " " + path.getFileName().toString())
.collect(Collectors.toList());
System.out.println("$ > shasum im cool haha look at me");
shasum.forEach(System.out::println);
// Write the checksums to a file
Files.write(getRelativeFile("dist/checksums.txt"), shasum);
}