Fixed incorrect flag.

This commit is contained in:
Caleb Gasser 2022-06-22 11:13:28 -05:00
parent 70798739de
commit d7a48b8a22

View file

@ -215,7 +215,7 @@ if [ "${KEY}" != "nokey" ]; then
fi
if [ "${OS}" = "FreeBSD" ]; then
if ! [ -f /usr/sbin/netclient ]; then
if ! [ -x /usr/sbin/netclient ]; then
echo "Moving netclient executable to \"/usr/sbin/netclient\""
mv netclient /usr/sbin
else