Fix: Remove unnecessary quotes around the variable 43/71043/1 v0.82.4
authorAnil Belur <abelur@linuxfoundation.org>
Wed, 30 Nov 2022 08:57:05 +0000 (18:57 +1000)
committerAnil Belur <abelur@linuxfoundation.org>
Wed, 30 Nov 2022 09:00:03 +0000 (19:00 +1000)
Additional quotes changes the behavior while processing glob patterns.

Issue-ID: RELENG-4530
Change-Id: Ia986e1a3d1e6cbb2ad655aa83c3a5d3c865a782a
Signed-off-by: Anil Belur <abelur@linuxfoundation.org>
releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml [new file with mode: 0644]
shell/nexus-iq-python-cli.sh

diff --git a/releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml b/releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml
new file mode 100644 (file)
index 0000000..9ddf621
--- /dev/null
@@ -0,0 +1,5 @@
+---
+fixes:
+  - |
+    Remove unnecessary quotes around the variable that processes
+    glob patterns.
index 929cf8e..2e23f20 100644 (file)
@@ -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}"