summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2021-08-04 02:25:08 +0000
committerGerrit Code Review <gerrit@onap.org>2021-08-04 02:25:08 +0000
commitc59298e6b6de5b002699667b9613788e1dc9d33a (patch)
treeb1072c9944a7795b314e355fbe66e73a76d30eb9
parenteddda0ea8534c5affa5ba3afb8dd751c737180ea (diff)
parent940d782e137941d015585e45ff772e8bb573e484 (diff)
Merge "Fix: Fix machine name"
-rw-r--r--shell/oom-create-netrc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/oom-create-netrc.sh b/shell/oom-create-netrc.sh
index 4b076a67b..1b273b1cc 100644
--- a/shell/oom-create-netrc.sh
+++ b/shell/oom-create-netrc.sh
@@ -40,7 +40,7 @@ fi
if [ "$SERVER_ID" == "ossrh" ]; then
machine="oss.sonatype.org"
else
- machine=$(echo "$DOCKER_URL" | awk -F/ '{print $3}')
+ machine=$(echo "$DOCKER_URL")
fi
user=$(echo "$CREDENTIAL" | cut -f1 -d:)