Skip to content

Commit 9e6fbcc

Browse files
committed
Attempt to work out why release versioning isn't working
1 parent 6f80e6b commit 9e6fbcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
# simple version number script loosely based on git-version-gen
33

4-
v=`git describe --abbrev=4 --match="v*" HEAD 2>/dev/null || echo "UNKNOWN"`
4+
v=`git describe --abbrev=4 --match="v*" HEAD`
55
v=`echo "$v" | tr -d "vg" | tr "\-" "."`
66
echo $v > VERSION
77
printf %s "$v"

0 commit comments

Comments
 (0)