From: Anil Belur Date: Wed, 30 Nov 2022 08:57:05 +0000 (+1000) Subject: Fix: Remove unnecessary quotes around the variable X-Git-Tag: v0.82.4^0 X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?p=releng%2Fglobal-jjb.git;a=commitdiff_plain;h=631a7f22a7e383d2ed5886e721cd370ff85613d4 Fix: Remove unnecessary quotes around the variable Additional quotes changes the behavior while processing glob patterns. Issue-ID: RELENG-4530 Change-Id: Ia986e1a3d1e6cbb2ad655aa83c3a5d3c865a782a Signed-off-by: Anil Belur --- diff --git a/releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml b/releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml new file mode 100644 index 00000000..9ddf6210 --- /dev/null +++ b/releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Remove unnecessary quotes around the variable that processes + glob patterns. diff --git a/shell/nexus-iq-python-cli.sh b/shell/nexus-iq-python-cli.sh index 929cf8ed..2e23f20c 100644 --- a/shell/nexus-iq-python-cli.sh +++ b/shell/nexus-iq-python-cli.sh @@ -26,7 +26,7 @@ echo "INFO: running nexus-iq-cli on project $NEXUS_IQ_PROJECT_NAME and file $REQ # result.json is a mystery java -jar "${CLI_LOCATION}" @cli-auth.txt \ -s https://nexus-iq.wl.linuxfoundation.org -i "${NEXUS_IQ_PROJECT_NAME}" \ - -t build -r result.json "${NEXUS_TARGET_BUILD}" + -t build -r result.json ${NEXUS_TARGET_BUILD} rm cli-auth.txt rm "${CLI_LOCATION}"