[MNG-7190] Load mavenrc from /usr/local/etc also in Bourne shell script

This commit is contained in:
Michael Osipov 2021-07-19 23:56:22 +02:00
parent 94df4a819a
commit 87120634a6
1 changed files with 4 additions and 0 deletions

View File

@ -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