liuchunhao commented on code in PR #5977: URL: https://github.com/apache/gravitino/pull/5977#discussion_r1912342954
########## bin/common.sh: ########## @@ -42,6 +42,15 @@ if [[ -f "${GRAVITINO_CONF_DIR}/gravitino-env.sh" ]]; then . "${GRAVITINO_CONF_DIR}/gravitino-env.sh" fi +if [[ -z "${GRAVITINO_VERSION}" ]]; then + echo -e "GRAVITINO_VERSION is not set, you may need to:\n" \ + "1. Ensure that a compiled version of Gravitino is available at" \ Review Comment: Thank you for your feedback. After testing, I found that if a single space is added at the end of each line, the final output actually contains two spaces. This happens because there is already a space between the backslash `\` and the content, and the indentation at the beginning of each line also contributes to the whitespace in the output. I have added spaces based on your suggestions. If I have misunderstood your intentions regarding adding whitespace at the end of each line, kindly let me know. -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org