X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=shell%2Fmaven-build-deps.sh;h=8583d90a0a6682e727bd832df0a259404c4414a6;hb=407b9b1a5f36d7bbdf86bc8480768878292b3349;hp=fdb29b2b07772be8d34d22c1c9dac424fb8093b3;hpb=08c998aade122668eb8726f826d697813e23abea;p=releng%2Fglobal-jjb.git diff --git a/shell/maven-build-deps.sh b/shell/maven-build-deps.sh index fdb29b2b..8583d90a 100644 --- a/shell/maven-build-deps.sh +++ b/shell/maven-build-deps.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/bash -l # SPDX-License-Identifier: EPL-1.0 ############################################################################## # Copyright (c) 2017 The Linux Foundation and others. @@ -20,7 +20,7 @@ set -e -o pipefail set +u -PROJECTS=($(echo "$DEPENDENCY_BUILD_ORDER")) +IFS=" " read -r -a PROJECTS <<< "$DEPENDENCY_BUILD_ORDER" REPOS_DIR="$WORKSPACE/.repos" export MAVEN_OPTS @@ -30,10 +30,10 @@ for project in "${PROJECTS[@]}"; do # Disable SC2086 because we want to allow word splitting for $MAVEN_* parameters. # shellcheck disable=SC2086 $MVN clean install \ - -Pq \ + -e -Pq \ -DskipTests=true \ --global-settings "$GLOBAL_SETTINGS_FILE" \ --settings "$SETTINGS_FILE" \ - $MAVEN_PARAMS $MAVEN_OPTIONS + $MAVEN_OPTIONS $MAVEN_PARAMS popd done