소스 검색

Fixed incorrect flag.

Caleb Gasser 3 년 전
부모
커밋
aebf652420
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/netclient-install.sh

+ 1 - 1
scripts/netclient-install.sh

@@ -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