1
0
Fork 0
gophernicus/version

15 lines
178 B
Bash
Executable File

#!/bin/sh
##
## Generate Gophernicus version/build number
##
DEFAULT="120+"
if which git >/dev/null && test -d .git; then
git log | grep -c "^commit"
else
echo $DEFAULT
fi