diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-25 23:30:38 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-25 23:30:38 +0200 |
commit | 653a60cd13b1ce5755af733f5a1b49c1c866a5f2 (patch) | |
tree | 49d2d863585356a40855b46bc0aeb01e6209f454 /Ports/zstd | |
parent | 7b1ba4bd5cdc2df2e83253e5a7935de70b4ab338 (diff) | |
download | serenity-653a60cd13b1ce5755af733f5a1b49c1c866a5f2.zip |
Ports: Add missing SHA256 hashes to dash and zstd
We don't support hashes from external files (anymore), downloading
another file for integrity validation is pointless. As as result, these
two ports would refuse to build as their hashes were missing.
Fixes #6645.
Diffstat (limited to 'Ports/zstd')
-rwxr-xr-x | Ports/zstd/package.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Ports/zstd/package.sh b/Ports/zstd/package.sh index 356ee0239b..945eb39e8c 100755 --- a/Ports/zstd/package.sh +++ b/Ports/zstd/package.sh @@ -1,6 +1,5 @@ #!/usr/bin/env -S bash ../.port_include.sh port=zstd version=1.4.4 -files="https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz zstd-${version}.tar.gz -https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz.sha256 zstd-${version}.tar.gz.sha256" +files="https://github.com/facebook/zstd/releases/download/v${version}/zstd-${version}.tar.gz zstd-${version}.tar.gz 59ef70ebb757ffe74a7b3fe9c305e2ba3350021a918d168a046c6300aeea9315" auth_type=sha256 |