Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/wg-quick/darwin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ parse_options() {
}

detect_launchd() {
unset LAUNCHED_BY_LAUNCHD
LAUNCHED_BY_LAUNCHD=1
local line
while read -r line; do
if [[ $line =~ ^\s*domain\ =\ ]]; then
LAUNCHED_BY_LAUNCHD=1
if [[ $line =~ "^\s*\(pid $$ is not managed by launchd\)" ]]; then
unset LAUNCHED_BY_LAUNCHD
break
fi
done < <(launchctl procinfo $$ 2>/dev/null)
Expand Down