aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-04-06 01:26:24 +0200
committerHarald Welte <laforge@gnumonks.org>2018-04-06 06:44:34 +0000
commite5518b07d6fc3375a9e4004a2ed2680dbb2d178e (patch)
tree26293c19b23c1ea9321466d5c38df58210757ad1
parent6496edd2e906a1e45c76aafa076cdab3bc82e202 (diff)
contrib: jenkins_bts_model: Fix bashism expr
In posix shell, = is valid and == is not. Change-Id: I5c027039d12c5e455a8f8a0878f88ab30c168db4
-rwxr-xr-xcontrib/jenkins_bts_model.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/jenkins_bts_model.sh b/contrib/jenkins_bts_model.sh
index 33bfdc7c..2488f715 100755
--- a/contrib/jenkins_bts_model.sh
+++ b/contrib/jenkins_bts_model.sh
@@ -4,7 +4,7 @@
bts_model="$1"
-if [ "x$bts_model" == "x" ]; then
+if [ "x$bts_model" = "x" ]; then
echo "Error: You have to specify the BTS model as first argument, e.g. $0 sysmo"
exit 2
fi