mirror of https://github.com/apache/maven.git
[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:
parent
ba05e6a102
commit
7185b0a168
|
@ -133,7 +133,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