contrib: jenkins_bts_model: Fix bashism expr

In posix shell, = is valid and == is not.

Change-Id: I5c027039d12c5e455a8f8a0878f88ab30c168db4
This commit is contained in:
Pau Espin 2018-04-06 01:26:24 +02:00 committed by Harald Welte
parent 6496edd2e9
commit e5518b07d6
1 changed files with 1 additions and 1 deletions

View File

@ -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