summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>2013-02-24 10:48:05 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-24 06:43:40 -0800
commit69062034b3c184de1a3902c14611a1b3f8a9c384 (patch)
tree7081632dea0f9b4a0bc2dea2bdacb140c0878179 /scripts
parent9ceb65a3ce9b66431c6c22e6f09e1d05c29b65e0 (diff)
downloadsubsurface-69062034b3c184de1a3902c14611a1b3f8a9c384.tar.gz
Remove more useless quotes.
Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/get-version4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/get-version b/scripts/get-version
index 8fcb6b212..ba6406623 100755
--- a/scripts/get-version
+++ b/scripts/get-version
@@ -36,7 +36,7 @@ case $os in
set -- $v0 # split $v0 using $IFS separator
dots=$(($# - 1)) # use positional argument count
# split version string using a '-' separator
- IFS='-'
+ IFS=-
set -- $v0
v=$1
# do we need to add another digit?
@@ -55,7 +55,7 @@ case $os in
fi
;;
*)
- v='git.missing.please.hardcode.version'
+ v=git.missing.please.hardcode.version
;;
esac
printf '%s' $v