2014-09-19 17:44:04 +02:00
|
|
|
#!/bin/bash
|
2019-02-09 10:11:46 -05:00
|
|
|
SHA=$(curl -s http://download.redis.io/releases/keydb-${1}.tar.gz | shasum -a 256 | cut -f 1 -d' ')
|
|
|
|
ENTRY="hash keydb-${1}.tar.gz sha256 $SHA http://download.redis.io/releases/keydb-${1}.tar.gz"
|
|
|
|
echo $ENTRY >> ~/hack/keydb-hashes/README
|
|
|
|
vi ~/hack/keydb-hashes/README
|
2014-09-19 17:44:04 +02:00
|
|
|
echo "Press any key to commit, Ctrl-C to abort)."
|
|
|
|
read yes
|
2019-02-09 10:11:46 -05:00
|
|
|
(cd ~/hack/keydb-hashes; git commit -a -m "${1} hash."; git push)
|