Explorar el Código

fix checkroot

Bachir Soussi Chiadmi hace 6 años
padre
commit
5ddce52124
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      bin/checkroot.sh

+ 2 - 2
bin/checkroot.sh

@@ -3,8 +3,8 @@
 echo -e "checking root"
 
 if [ "$EUID" = 0 ]; then
+  echo -e "root ok"
+else
   echo -e "Please run as root"
   exit
-else
-  echo -e "root ok"
 fi