Ensure local hash is always of length 8, for consistency.

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
pull/5028/head
Adam Warner 1 year ago
parent b13a75a223
commit 38775cffdf
No known key found for this signature in database
GPG Key ID: 872950F3ECF2B173

@ -22,7 +22,7 @@ function get_local_version() {
function get_local_hash() {
cd "${1}" 2> /dev/null || return 1
git rev-parse --short HEAD || return 1
git rev-parse --short=8 HEAD || return 1
}
function get_remote_version() {

Loading…
Cancel
Save