Use a single sed invocation
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 14 Aug 2015 18:51:15 +0000 (20:51 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 14 Aug 2015 18:51:15 +0000 (20:51 +0200)
version-gen.sh

index 52f04e6..a80e979 100755 (executable)
@@ -2,12 +2,10 @@
 
 DEFAULT_VERSION="5.5.0.git"
 
-VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//'`"
+VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
 
 if test -z "$VERSION"; then
        VERSION="$DEFAULT_VERSION"
 fi
 
-VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
-
 printf "%s" "$VERSION"