/bin/sh on OSX doesn't understand -n

This breaks PACKAGEVERSION since the -n is left verbatim in the string.
Use the more portable printf instead
This commit is contained in:
Ruben Kerkhof
2015-05-09 20:34:52 +02:00
committed by Marc Fournier
parent 144a9eaae6
commit a2c0ff89b4

View File

@@ -10,4 +10,4 @@ fi
VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
echo -n "$VERSION"
printf "%s" "$VERSION"