Merge pull request #3279 from fruitl00p/patch-3

Make sure the universe repo is loaded into APT
This commit is contained in:
Jose Diaz-Gonzalez
2019-01-06 20:49:46 -05:00
committed by GitHub

View File

@@ -32,6 +32,12 @@ install-requirements() {
case "$DOKKU_DISTRO" in
debian|ubuntu)
if ! dpkg -l | grep -q software-properties-common; then
apt-get update -qq > /dev/null
apt-get -qq -y install software-properties-common
fi
add-apt-repository universe > /dev/null
apt-get update -qq > /dev/null
;;
esac