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 5b14754..462ad1a 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -98,7 +98,7 @@ deploy) hostport=$(echo $1 | cut -f3 -d /) host=$(echo $hostport | cut -f1 -d:) settings=$HOME/.m2/settings.xml - ( echo machine $host; echo login $(xpath $settings "//servers/server[id='$MVN_SERVER_ID']/username/text()"); echo password $(xpath $settings "//servers/server[id='$MVN_SERVER_ID']/password/text()") ) >$HOME/.netrc + ( 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 } |