Skip to content

Commit

Permalink
only create SHA512 digests (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jul 1, 2023
1 parent b95cef2 commit e336e1b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 12 deletions.
Expand Up @@ -49,7 +49,6 @@ private[sourcedist] object SourceDistGenerate {
None
)

ShaUtils.writeShaDigest(toZipFile, 256)
ShaUtils.writeShaDigest(toZipFile, 512)

if (toTgzFile.exists()) {
Expand All @@ -59,7 +58,6 @@ private[sourcedist] object SourceDistGenerate {
logger.info(s"Creating tar archive at ${toTgzFile.getPath}")
TarUtils.tgzFiles(toTgzFile, files, homeDir)

ShaUtils.writeShaDigest(toTgzFile, 256)
ShaUtils.writeShaDigest(toTgzFile, 512)
}

Expand Down
4 changes: 0 additions & 4 deletions src/sbt-test/sbt-source-dist/multi-project/test
@@ -1,14 +1,10 @@
> sourceDistGenerate
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha512
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha512

$ absent target/dist/project-src-0.1.9-20230331.zip
$ absent target/dist/project-src-0.1.9-20230331.zip.sha256
$ absent target/dist/project-src-0.1.9-20230331.zip.sha512
$ absent target/dist/project-src-0.1.9-20230331.tgz
$ absent target/dist/project-src-0.1.9-20230331.tgz.sha256
$ absent target/dist/project-src-0.1.9-20230331.tgz.sha512
@@ -1,7 +1,5 @@
> sourceDistGenerate
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha512
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha512
2 changes: 0 additions & 2 deletions src/sbt-test/sbt-source-dist/simple-implicit-name/test
@@ -1,7 +1,5 @@
> sourceDistGenerate
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha512
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha512
2 changes: 0 additions & 2 deletions src/sbt-test/sbt-source-dist/simple/test
@@ -1,7 +1,5 @@
> sourceDistGenerate
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.zip.sha512
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha256
$ exists target/dist/incubator-pekko-src-0.1.9-20230331.tgz.sha512

0 comments on commit e336e1b

Please sign in to comment.