mirror of https://github.com/apache/maven.git
[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:
parent
cf2934b6ad
commit
09f3b9f500
|
@ -40,7 +40,7 @@ find_maven_basedir() {
|
|||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
if [ "$wdir" == '/' ] ; then
|
||||
if [ "$wdir" = '/' ] ; then
|
||||
break
|
||||
fi
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
|
|
Loading…
Reference in New Issue