From 631a7f22a7e383d2ed5886e721cd370ff85613d4 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Wed, 30 Nov 2022 18:57:05 +1000 Subject: [PATCH] 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 --- releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml | 5 +++++ shell/nexus-iq-python-cli.sh | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/fix-nexus-target-build-def1d9fba65ea217.yaml 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}" -- 2.16.6