shithub: rgbds

ref: db0667e54e4674f7ca82c3228420c63f28be6f7f
dir: /scripts/localversion.sh/

View raw version
#! /bin/bash

#
# Use git to figure out which version we are using.
#
# Adapted from a script written by Rene Scharfe <[email protected]>,
# found in the Linux Kernel.
#

set -u

if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
	printf '%s%s' -g $head

	git update-index --refresh --unmerged > /dev/null
	if git diff-index --name-only HEAD | read dummy; then
		printf '%s' -dirty
	fi

	exit
fi