2016-08-10 13:24:09 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
die () { echo $@ ; exit 1; }
|
|
|
|
|
2016-11-04 13:15:18 +08:00
|
|
|
\. ../../../nvm.sh
|
2016-08-10 13:24:09 +08:00
|
|
|
|
|
|
|
ALG="$(nvm_get_checksum_alg)"
|
|
|
|
|
|
|
|
case "$ALG" in
|
|
|
|
'sha-256' | 'sha-1')
|
|
|
|
echo 'sha-256 or sha-1 found'
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
die "sha-256 or sha-1 not found: found ${ALG}"
|
|
|
|
;;
|
|
|
|
esac
|