[MNG-8165] Get rid of bashism creeped in (#1653)

Use of "==" is a bashism.

---

https://issues.apache.org/jira/browse/MNG-8165
This commit is contained in:
Tamas Cservenak 2024-08-14 10:42:18 +02:00 committed by GitHub
parent ba05e6a102
commit 7185b0a168
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ find_maven_basedir() {
basedir=$wdir
break
fi
if [ "$wdir" == '/' ] ; then
if [ "$wdir" = '/' ] ; then
break
fi
wdir=`cd "$wdir/.."; pwd`