From c29a83b2592905c7632caf6e025c9cf123146380 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Sun, 11 Mar 2018 13:17:33 -0400 Subject: [PATCH] Assume yes when installing deps on Raspberry Pi via apt-get Signed-off-by: David Galloway --- installers/raspberry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/raspberry.sh b/installers/raspberry.sh index ecdcc842..7ef43426 100644 --- a/installers/raspberry.sh +++ b/installers/raspberry.sh @@ -42,7 +42,7 @@ sudo apt-get update || echo -e "\e[91mUpdate failed, carrying on installation .. # Installing helper tools echo -e "\e[96mInstalling helper tools ...\e[90m" -sudo apt-get install curl wget git build-essential unzip || exit +sudo apt-get --assume-yes install curl wget git build-essential unzip || exit # Check if we need to install or upgrade Node.js. echo -e "\e[96mCheck current Node installation ...\e[0m"