summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f87af5a)
raw | patch | inline | side by side (parent: f87af5a)
author | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 9 May 2015 18:34:52 +0000 (20:34 +0200) | ||
committer | Ruben Kerkhof <ruben@rubenkerkhof.com> | |
Sat, 9 May 2015 18:34:52 +0000 (20:34 +0200) |
This breaks PACKAGEVERSION since the -n is left verbatim in the string.
Use the more portable printf instead
Use the more portable printf instead
version-gen.sh | patch | blob | history |
diff --git a/version-gen.sh b/version-gen.sh
index 7b573ab7253260137d6910d16ac56b7e55972cd6..460c6e9d1ac6f3e834a08421962bcead4c9fbb09 100755 (executable)
--- a/version-gen.sh
+++ b/version-gen.sh
VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
-echo -n "$VERSION"
+printf "%s" "$VERSION"