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

Signed-off-by: Adam Warner <me@adamwarner.co.uk>
This commit is contained in:
Adam Warner
2022-11-14 22:51:39 +00:00
parent b13a75a223
commit 38775cffdf

View File

@@ -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() {