Copilot commented on code in PR #12553:
URL: https://github.com/apache/trafficserver/pull/12553#discussion_r2415398703
##########
tools/hrw4u/bootstrap.sh:
##########
@@ -32,11 +32,11 @@ eval "$(pyenv init -)"
if pyenv virtualenvs | grep hrw4u; then
pyenv uninstall -f "$VENV_NAME"
-else
- echo "==> Creating virtualenv $VENV_NAME..."
- pyenv virtualenv "$VENV_NAME"
fi
+echo "==> Creating virtualenv $VENV_NAME..."
+pyenv virtualenv "$VENV_NAME"
Review Comment:
The `fi` statement was moved outside the conditional block, which breaks the
shell script syntax. The `else` clause that was removed should be restored, or
the logic should be restructured to handle both cases properly.
--
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]