RockteMQ-AI commented on issue #541: URL: https://github.com/apache/rocketmq-connect/issues/541#issuecomment-5487019468
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The error `[[: not found` indicates `bin/runconnect.sh` uses bash-specific syntax (`[[`) but is being executed by `sh` (dash on Ubuntu/Debian). The script shebang should be `#!/usr/bin/env bash` or the script should be invoked explicitly with `bash`. **Root Cause:** Missing or incorrect shebang line, or script invoked with `sh` instead of `bash`. **Impact:** Cannot start connect runtime on systems where `/bin/sh` is not bash. **Severity:** Medium --- *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]
