Skip to content

Commit 7185b0a

Browse files
authored
[MNG-8165] Get rid of bashism creeped in (#1653)
Use of "==" is a bashism. --- https://issues.apache.org/jira/browse/MNG-8165
1 parent ba05e6a commit 7185b0a

File tree

1 file changed

+1
-1
lines changed
  • apache-maven/src/bin

1 file changed

+1
-1
lines changed

apache-maven/src/bin/mvn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ find_maven_basedir() {
133133
basedir=$wdir
134134
break
135135
fi
136-
if [ "$wdir" == '/' ] ; then
136+
if [ "$wdir" = '/' ] ; then
137137
break
138138
fi
139139
wdir=`cd "$wdir/.."; pwd`

0 commit comments

Comments
 (0)