mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-22 02:01:08 +07:00
6 lines
122 B
Bash
6 lines
122 B
Bash
|
|
#!/bin/bash
|
||
|
|
if [ -d "/Applications/AmneziaVPN.app" ] || pgrep -x "AmneziaVPN-service" >/dev/null; then
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
exit 0
|