From 04e838820ce48b715968bec283d9cf0bfc28caea Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 9 Oct 2017 21:09:29 +0200 Subject: [PATCH] Move apt-transport-https dependency to general dependency, not just RPi ones --- install_yunohost | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install_yunohost b/install_yunohost index 2128bda..8bd29d5 100755 --- a/install_yunohost +++ b/install_yunohost @@ -121,7 +121,7 @@ upgrade_system() { installscript_dependencies() { # dependencies of the install script itself - local DEPENDENCIES="lsb-release wget whiptail" + local DEPENDENCIES="lsb-release wget whiptail apt-transport-https" if [[ "$AUTOMODE" == "0" ]] ; then @@ -134,7 +134,7 @@ installscript_dependencies() { || return 1 if is_raspbian ; then - DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem apt-transport-https" + DEPENDENCIES="ssl-cert lua-event lua-expat lua-socket lua-sec lua-filesystem" apt_get_wrapper -o Dpkg::Options::="--force-confold" \ -y --force-yes install \ $DEPENDENCIES \