This is an automated email from the ASF dual-hosted git repository.
liuxun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino-playground.git
The following commit(s) were added to refs/heads/main by this push:
new a8b209f fix: `playground.sh` unexpected EOF while looking for
matching " (#117)
a8b209f is described below
commit a8b209faa8e298cbf5cf2f1225b7370f57f3f877
Author: D.Y. Wu <[email protected]>
AuthorDate: Tue Dec 24 08:54:35 2024 +0800
fix: `playground.sh` unexpected EOF while looking for matching " (#117)
fix unexpected EOF while looking for matching "
---
playground.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/playground.sh b/playground.sh
index 9124c97..3a267c7 100755
--- a/playground.sh
+++ b/playground.sh
@@ -52,7 +52,7 @@ checkPortInUse() {
if [[ "$(uname)" == "Darwin" ]]; then
openPort=$(lsof -i :$port -sTCP:LISTEN)
elif [[ "$(uname)" == "Linux" ]]; then
- echo "Checking ports with sudo permission ...'
+ echo "Checking ports with sudo permission ..."
openPort=$(sudo lsof -i :$port -sTCP:LISTEN)
fi
if [ -z "${openPort}" ]; then