From bdfbb48b006cc1e7bb05a13477b56de420b447e9 Mon Sep 17 00:00:00 2001 From: lukdz <19475662+lukdz@users.noreply.github.com> Date: Mon, 4 Sep 2023 07:48:29 +0200 Subject: [PATCH] delete single quotes (#202) that were consumed by previously removed eval Co-authored-by: lukasz.dzwoniarek --- apps/scripts/pipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scripts/pipe b/apps/scripts/pipe index 3c48fae..1fc0185 100755 --- a/apps/scripts/pipe +++ b/apps/scripts/pipe @@ -96,7 +96,7 @@ while [ $# -gt 0 ]; do u) user=$2; shift ;; v) verbose="--verbose"; shift ;; d) opts="--form dryRun=true $opts";; - b) opts="--form bindings='$(generate_json "$2")' $opts"; shift ;; + b) opts="--form bindings=$(generate_json "$2") $opts"; shift ;; c) uri=/apps/dx/scripts/exec.csv ;; n) opts="--form size=$2 $opts"; shift ;; f) opts="--form pipes_inputFile=@$2"; shift ;;