forked from RepoMirrors/baritone
print shasums on build
This commit is contained in:
parent
85b038dada
commit
3aa8f51015
|
@ -62,6 +62,8 @@ public class CreateDistTask extends BaritoneGradleTask {
|
|||
.map(path -> sha1(path) + " " + path.getFileName().toString())
|
||||
.collect(Collectors.toList());
|
||||
|
||||
shasum.forEach(System.out::println);
|
||||
|
||||
// Write the checksums to a file
|
||||
Files.write(getRelativeFile("dist/checksums.txt"), shasum);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue