Skip to content

Commit

Permalink
delete single quotes (#202)
Browse files Browse the repository at this point in the history
that were consumed by previously removed eval

Co-authored-by: lukasz.dzwoniarek <lukasz.dzwoniarek@codewave.pl>
  • Loading branch information
lukdz and lukaszdzwoniarek authored Sep 4, 2023
1 parent df881d5 commit bdfbb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/scripts/pipe
Original file line number Diff line number Diff line change
Expand Up @@ -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 ;;
Expand Down

0 comments on commit bdfbb48

Please sign in to comment.