-- Workaround: Added bionic repository in case $distro is debian
I have replaced
`Debian)
make_warn "Debian is not officially supported"
echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"
Debian lacks https support for apt, by default
sudo apt-get install apt-transport-https
case "$codename" in
*)
make_fail "Debian $codename is not officially supported"
;;
esac
;;`
to
`Debian)
make_warn "Debian is not officially supported"
echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"
"Debian GNU/Linux 10 (buster)"
-- Workaround: Added bionic repository in case $distro is debian
I have replaced `Debian) make_warn "Debian is not officially supported" echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"
Debian lacks https support for apt, by default
to
`Debian) make_warn "Debian is not officially supported" echo "### Installing possibly missing https support for APT (apt-get install apt-transport-https)"
Debian lacks https support for apt, by default
Worked fine