1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-10-13 05:03:40 -04:00
gophernicus/version

15 lines
174 B
Bash
Executable File

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