minor check update hash for branch name

This commit is contained in:
neilpang 2020-01-27 23:02:09 +08:00
parent 05aa26e619
commit f716f6060e
1 changed files with 5 additions and 1 deletions

View File

@ -6315,7 +6315,11 @@ _installOnline() {
}
_getMasterHash() {
_hash_url="https://api.github.com/repos/Neilpang/acme.sh/git/refs/heads/master"
_b="$BRANCH"
if [ -z "$_b" ]; then
_b="master"
fi
_hash_url="https://api.github.com/repos/Neilpang/acme.sh/git/refs/heads/$_b"
_get $_hash_url | tr -d "\r\n" | tr '{},' '\n' | grep '"sha":' | cut -d '"' -f 4
}