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

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:07 +02:00 committed by GitHub
parent cf2934b6ad
commit 09f3b9f500
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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