diff options
-rwxr-xr-x | mvn-phase-script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh index 462ad1a..51d1b28 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -97,7 +97,7 @@ deploy) set +x hostport=$(echo $1 | cut -f3 -d /) host=$(echo $hostport | cut -f1 -d:) - settings=$HOME/.m2/settings.xml + settings=${SETTINGS_FILE:-$HOME/.m2/settings.xml} ( echo machine $host; echo login $(xpath -q -e "//servers/server[id='$MVN_SERVER_ID']/username/text()" $settings); echo password $(xpath -q -e "//servers/server[id='$MVN_SERVER_ID']/password/text()" $settings) ) >$HOME/.netrc chmod 600 $HOME/.netrc set -x |