diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-06-24 00:02:49 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-06-24 00:02:49 +0200 |
commit | 200b3887524a859b770d13f73d418635c9bd7751 (patch) | |
tree | 9cbbf3b2a9671783a48a2951657ff6813ac60884 /devscripts | |
parent | dabcaf3b06c9874295b51109364460be6b38cb8d (diff) |
Correct comparison test
Diffstat (limited to 'devscripts')
-rwxr-xr-x | devscripts/release.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh index 735e13a90..20a96c6a9 100755 --- a/devscripts/release.sh +++ b/devscripts/release.sh @@ -15,7 +15,7 @@ set -e skip_test=false -if [ "$2" == '--skip-test' ]; then +if [ "$2" = '--skip-test' ]; then skip_test=true fi if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi |