fix: drop universe installation in debian

This doesn't exist for debian, and is fine to skip.

[ci skip]
This commit is contained in:
Jose Diaz-Gonzalez
2019-01-22 13:30:59 -05:00
committed by GitHub
parent 39c0c316fc
commit 954684f5b5

View File

@@ -32,7 +32,13 @@ install-requirements() {
echo "--> Ensuring we have the proper dependencies"
case "$DOKKU_DISTRO" in
debian | ubuntu)
debian)
if ! dpkg -l | grep -q software-properties-common; then
apt-get update -qq >/dev/null
apt-get -qq -y install software-properties-common
fi
;;
ubuntu)
if ! dpkg -l | grep -q software-properties-common; then
apt-get update -qq >/dev/null
apt-get -qq -y install software-properties-common