Commit 3aa656ab authored by antirez's avatar antirez
Browse files

Use sha256 instead of sha1 to generate tarball hashes.

parent 42d6a6c3
#!/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)."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment