Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: d71cab243d
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| @@ -1,14 +1,14 @@ | |||
| #!/usr/bin/env bash | |||
| #!/usr/bin/env bash | |||
There was a problem hiding this comment.
Remove BOM before shebang in test runner script
The file now starts with a UTF-8 BOM before #!, so the shebang is no longer recognized as the first bytes. When this script is run (especially via ./test_multiturn.sh or under shells that enable -e early), the first line is treated as a command (#!/usr/bin/env) and can fail before tests run, making the integration runner unreliable.
Useful? React with 👍 / 👎.
No description provided.