From 14838b0ac82274b431d80a0a8c7be6ede09a6fd5 Mon Sep 17 00:00:00 2001 From: Xinwei Xiong <3293172751NSS@gmail.com> Date: Tue, 16 Jan 2024 10:57:10 +0800 Subject: [PATCH] Update util.sh --- scripts/lib/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/util.sh b/scripts/lib/util.sh index 1ec722d8f..f15a26346 100755 --- a/scripts/lib/util.sh +++ b/scripts/lib/util.sh @@ -311,7 +311,7 @@ openim::util::check_ports() { fi elif [[ "$OSTYPE" == "darwin"* ]]; then # For macOS, use lsof - info=$(lsof -i:"$port" | grep "\*:$port" || true) + info=$(lsof -P -i:"$port" | grep "LISTEN" || true) fi # Check if any process is using the port