mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
Use sha256 instead of sha1 to generate tarball hashes.
This commit is contained in:
parent
42d6a6c36f
commit
3aa656abf5
@ -1,6 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
SHA=$(curl -s http://download.redis.io/releases/redis-${1}.tar.gz | shasum | cut -f 1 -d' ')
|
SHA=$(curl -s http://download.redis.io/releases/redis-${1}.tar.gz | shasum -a 256 | cut -f 1 -d' ')
|
||||||
ENTRY="hash redis-${1}.tar.gz sha1 $SHA http://download.redis.io/releases/redis-${1}.tar.gz"
|
ENTRY="hash redis-${1}.tar.gz sha256 $SHA http://download.redis.io/releases/redis-${1}.tar.gz"
|
||||||
echo $ENTRY >> ~/hack/redis-hashes/README
|
echo $ENTRY >> ~/hack/redis-hashes/README
|
||||||
vi ~/hack/redis-hashes/README
|
vi ~/hack/redis-hashes/README
|
||||||
echo "Press any key to commit, Ctrl-C to abort)."
|
echo "Press any key to commit, Ctrl-C to abort)."
|
||||||
|
Loading…
Reference in New Issue
Block a user