Fixed incorrect flag.

This commit is contained in:
Caleb Gasser 2022-06-22 12:03:04 -05:00
parent 4c30b5d5df
commit b54298347e

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