From d000f813566799926f8e877b3c4aa381ba3c0327 Mon Sep 17 00:00:00 2001 From: Artem Smirnov Date: Wed, 10 Oct 2018 15:28:11 +0300 Subject: [PATCH] image: Remove /dev/null on apt update --- builder/image-software.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/image-software.sh b/builder/image-software.sh index 764ad11f..71a56144 100755 --- a/builder/image-software.sh +++ b/builder/image-software.sh @@ -45,7 +45,7 @@ echo "deb http://repo.coex.space/clever stretch main" > /etc/apt/sources.list.d/ echo_stamp "Update apt cache" # TODO: FIX ERROR: /usr/bin/apt-key: 596: /usr/bin/apt-key: cannot create /dev/null: Permission denied -apt-get update -qq > /dev/null +apt-get update -qq # && apt upgrade -y echo_stamp "Software installing"