Move apt-transport-https dependency to general dependency, not just RPi ones

This commit is contained in:
Alexandre Aubin 2017-10-09 21:09:29 +02:00 committed by GitHub
parent 0e8c6962d3
commit 04e838820c

View file

@ -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 \