From 230b7b9d736a1c301a7de6fe075b7910aa6abd5f Mon Sep 17 00:00:00 2001 From: Raghav Potluri Date: Sun, 31 Aug 2025 09:20:18 -0700 Subject: [PATCH] remove use of realpath --- resources/packaging/macos/wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/packaging/macos/wrapper.sh b/resources/packaging/macos/wrapper.sh index 5c283ce0..3c26ef9a 100755 --- a/resources/packaging/macos/wrapper.sh +++ b/resources/packaging/macos/wrapper.sh @@ -1,4 +1,4 @@ #!/usr/bin/env zsh SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" SNIFFNET_PATH="$SCRIPT_DIR/sniffnet" -osascript -e "do shell script \"'$(realpath "$SNIFFNET_PATH")' >/dev/null 2>&1 &\" with prompt \"Comfortably monitor your Internet traffic.\" with administrator privileges" +osascript -e "do shell script \"'$SNIFFNET_PATH' >/dev/null 2>&1 &\" with prompt \"Comfortably monitor your Internet traffic.\" with administrator privileges"