diff --git a/bin/installbfa.sh b/bin/installbfa.sh
index d21f5dec26c97e612f09eff4b0f98a6343f05ca0..b58ef657389ee153cda5c52763dfba44285147cb 100755
--- a/bin/installbfa.sh
+++ b/bin/installbfa.sh
@@ -32,7 +32,7 @@ function nodejsinstall
     # Nodejs software repository PGP key
     if [ `apt-key export ${NODEJSPGP} 2>&1 | wc -l` -le 50 ]
     then
-        info Add nodejs software repository PGP key
+        info Adding nodejs software repository PGP key
         apt-key adv --keyserver keyserver.ubuntu.com --recv ${NODEJSPGP}
     fi
     local file=/etc/apt/sources.list.d/nodesource.list
@@ -144,7 +144,7 @@ function usersetup
 {
     if ! id bfa >/dev/null 2>&1
     then
-        info Add required user \"bfa\"
+        info Adding required user \"bfa\"
         adduser --disabled-password --gecos 'Blockchain Federal Argentina' bfa
     fi
     cd ~bfa
@@ -163,7 +163,7 @@ function usersetup
         info Adding to automatically source \~bfa/bfa/bin/env via .bashrc
         echo 'source ~/bfa/bin/env' >> .bashrc
     fi
-    mkdir ~bfa/bfa/network
+    mkdir -p ~bfa/bfa/network
 }
 
 function cronit