diff options
author | Jack Lucas <jflucas@research.att.com> | 2019-05-23 10:57:07 -0400 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2019-05-23 10:59:14 -0400 |
commit | 0d031d73f1a79ba1fff6a6022c679f9d81a7417a (patch) | |
tree | c40dca4e4aa8a4884864a48a1998a7f6220fe3fd /mvn-phase-script.sh | |
parent | d9834a145d44a100eb2033889700d17600f54701 (diff) |
Fix CentOS incompatibilities in mvn-phase-lib
Issue-ID: DCAEGEN2-1520
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Change-Id: Ica41de308a32767a6f1c4ce178d2460adfa2f61b
Diffstat (limited to 'mvn-phase-script.sh')
-rwxr-xr-x | mvn-phase-script.sh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh index 7d4bcdb..a5cdb92 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -33,11 +33,7 @@ if [ "$RELEASE_TAG" != "R1" ]; then else RELEASE_TAGGED_DIR="releases" fi -if ! wget -O ${PROJECT_ROOT}/mvn-phase-lib.sh \ - "$MVN_RAWREPO_BASEURL_DOWNLOAD"/org.onap.dcaegen2.utils/${RELEASE_TAGGED_DIR}scripts/mvn-phase-lib.sh; then - echo "Fail to download mvn-phase-lib.sh" - exit 1 -fi + source "${PROJECT_ROOT}"/mvn-phase-lib.sh |