From 7ef290329d6688d0edc0f7098efc13ec3b6cbccb Mon Sep 17 00:00:00 2001 From: Alexander Lutay Date: Fri, 2 Oct 2020 09:45:08 +0200 Subject: [PATCH] TT#77256 Fix a621bd592: Add missing '\' for tool 'ngcp-api-patch' Otherwise it has a permanent error: > curl: no URL specified! Change-Id: I6b3de35d9f4f6fb9e61ec812b30889248b03487d (cherry picked from commit 7c7d136415a116790f8db1e5b41b8acbb442e5d0) --- tools_bin/ngcp-api-patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools_bin/ngcp-api-patch b/tools_bin/ngcp-api-patch index 9328f8f612..bb3f688617 100755 --- a/tools_bin/ngcp-api-patch +++ b/tools_bin/ngcp-api-patch @@ -73,7 +73,7 @@ fi validateurl "$URL" ${CURL} -i ${VERBOSE} -X PATCH \ - "${APIREALM[@]}" + "${APIREALM[@]}" \ -H 'Connection: close' -H "Prefer: return=${PREFER}" \ -H "Content-Type: ${CTYPE}" \ --user "${APIUSER}" --insecure "${FILE_INPUT[@]}" "${URL}" "${INPUT[@]}"