mirror of
https://github.com/gravitl/netmaker.git
synced 2025-02-25 00:24:37 +08:00
Fixed incorrect flag.
This commit is contained in:
parent
4c30b5d5df
commit
b54298347e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue