Skip to content

Commit

Permalink
scripts: cope with empty CLIENT_ARGS on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddrysdale committed Jun 10, 2020
1 parent 1d531e3 commit 0f088a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_example
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ else
readonly TLS_ARGS=("--ca_cert=${SCRIPTS_DIR}/../examples/certs/local/ca.pem")
fi

readonly CLIENT_ARGS=("${@}") # Choose client args provided after '--'.
readonly CLIENT_ARGS=("${@-}") # Choose client args provided after '--'.

# Run the application client.
case "${client_language}" in
Expand Down

0 comments on commit 0f088a7

Please sign in to comment.