RockteMQ-AI commented on issue #541: URL: https://github.com/apache/rocketmq-connect/issues/541#issuecomment-5191003611
**Issue Evaluation** Category: `bug` | Status: **Confirmed** **Root Cause:** The error `bin/runconnect.sh: 37: [[: not found` indicates the script is being executed with `/bin/sh` instead of `/bin/bash`. The `[[` conditional syntax is bash-specific and not available in POSIX sh. **Fix:** Ensure the script is executed with bash: ```bash bash bin/connect-standalone.sh ``` Or add a proper shebang line `#!/usr/bin/env bash` at the top of the script if missing. --- *Automated evaluation by RockteMQ-AI* -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
