You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In `test/launch_local_env.sh`, the check for the `client_id` could fail with a "unary operator expected" error if the `jq` command produced an empty result. This would happen if the config file path was invalid or the `client_id` key was missing, causing the script to crash abruptly.
By wrapping the command substitution in double quotes, the comparison remains syntactically valid even with an empty string. This allows the script to fail gracefully and display its own helpful error message instead of exiting with a shell error.
Additionally, a stray quotation mark is removed from a command example in the README.
0 commit comments