[Bash] Fix matching of header parameters (#9370)

This commit is contained in:
Mark Nevill
2021-05-10 09:11:13 +01:00
committed by GitHub
parent a98cb97f91
commit ae2423e64a
2 changed files with 2 additions and 2 deletions

View File

@@ -979,7 +979,7 @@ case $key in
body_parameters[${body_key}]=${body_value}
fi
;;
+\([^=]\):*)
+([^=]):*)
# Parse header arguments and convert them into curl
# only after the operation argument
if [[ "$operation" ]]; then

View File

@@ -3820,7 +3820,7 @@ case $key in
body_parameters[${body_key}]=${body_value}
fi
;;
+\([^=]\):*)
+([^=]):*)
# Parse header arguments and convert them into curl
# only after the operation argument
if [[ "$operation" ]]; then