mirror of https://github.com/apache/maven.git
[MNG-7190] Load mavenrc from /usr/local/etc also in Bourne shell script
This commit is contained in:
parent
268f956574
commit
25df095829
|
@ -29,6 +29,10 @@
|
||||||
|
|
||||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||||
|
|
||||||
|
if [ -f /usr/local/etc/mavenrc ] ; then
|
||||||
|
. /usr/local/etc/mavenrc
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -f /etc/mavenrc ] ; then
|
if [ -f /etc/mavenrc ] ; then
|
||||||
. /etc/mavenrc
|
. /etc/mavenrc
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue