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
94df4a819a
commit
87120634a6
|
@ -29,6 +29,10 @@
|
|||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /usr/local/etc/mavenrc ] ; then
|
||||
. /usr/local/etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue