Match just the manifest lines that start with sha-1 for the refs
This commit is contained in:
parent
18e9ad1121
commit
8d5da3bc7e
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ ensure_connected()
|
|||
return
|
||||
fi
|
||||
MANIFESTDATA="$(GET_OR_EMPTY "$URL" manifest | DECRYPT)"
|
||||
BRANCHLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep -v '^pack ' || :))
|
||||
BRANCHLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep -E '^[0-9a-f]{40}' || :))
|
||||
PACKLIST=$(printf "%s\n" "$MANIFESTDATA" | (grep '^pack ' || :))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue