sed out the filename from sha1sum output
This commit is contained in:
parent
c83472145c
commit
dd38d01a11
1 changed files with 2 additions and 2 deletions
|
@ -65,11 +65,11 @@ fi
|
||||||
getextra () {
|
getextra () {
|
||||||
extrap="$1"
|
extrap="$1"
|
||||||
extrasha="$2"
|
extrasha="$2"
|
||||||
curextrasha="$(withcyg sha1sum $extrap)"
|
curextrasha="$(withcyg sha1sum $extrap | sed 's/ .*//')"
|
||||||
if [ ! -e "$extrap" ] || [ "$curextrasha" != "$extrasha" ]; then
|
if [ ! -e "$extrap" ] || [ "$curextrasha" != "$extrasha" ]; then
|
||||||
rm -f "$extrap" || true
|
rm -f "$extrap" || true
|
||||||
withcyg wget https://downloads.kitenet.net/git-annex/windows/assets/$extrap
|
withcyg wget https://downloads.kitenet.net/git-annex/windows/assets/$extrap
|
||||||
curextrasha="$(withcyg sha1sum $extrap)"
|
curextrasha="$(withcyg sha1sum $extrap | sed 's/ .*//')"
|
||||||
if [ "$curextrasha" != "$extrasha" ]; then
|
if [ "$curextrasha" != "$extrasha" ]; then
|
||||||
rm -f "$extrap"
|
rm -f "$extrap"
|
||||||
echo "CHECKSUM FAILURE" >&2
|
echo "CHECKSUM FAILURE" >&2
|
||||||
|
|
Loading…
Add table
Reference in a new issue