From 6d7b7eae32bb77aa4b592a06cdb302aa943b37a3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robert=20Martin-Leg=C3=A8ne?= <robert@nic.ar>
Date: Thu, 27 Sep 2018 11:12:43 -0300
Subject: [PATCH] Adding missing packages to installbfa.sh

---
 bin/installbfa.sh | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/bin/installbfa.sh b/bin/installbfa.sh
index 31dac3b..8071abe 100755
--- a/bin/installbfa.sh
+++ b/bin/installbfa.sh
@@ -133,8 +133,10 @@ function aptinstall
     do
         # consider apt install --install-suggests if you are masochist
         dpkg --verify $pkg 2>/dev/null ||
-        info Installing $pkg &&
-        apt -y install $pkg
+        (
+            info Installing $pkg
+            apt -y install $pkg
+        )
     done
 }
 
@@ -180,6 +182,7 @@ function welcome
 
 # development tools
 aptinstall dirmngr apt-transport-https curl git curl build-essential sudo
+aptinstall jq libjson-perl libwww-perl
 usersetup
 nodejsinstall
 web3install
-- 
GitLab