#!/bin/bash set -e FILE=localversion compute_version() { if [ ! -d .git ]; then return; fi head=$(git rev-parse --verify --short HEAD) printf "~git-%s" "$head" } [ -f "$FILE" ] || touch "$FILE" old_version=$(< "$FILE") version=$(printf '"%s"\n' "$(compute_version)") if [ "$version" != "$old_version" ]; then echo "$version" > "$FILE" fi