From 578a5055d1ff57e998b09a46aca4c832d5c72702 Mon Sep 17 00:00:00 2001 From: DrMainIT <98032465+DrMainIT@users.noreply.github.com> Date: Mon, 22 Jul 2024 21:22:32 +0200 Subject: [PATCH] Update install-deps Package python-software-properties is not available, but is referred to by another package. the following packages replace it: software-properties-common --- install-deps | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-deps b/install-deps index b1d5a4d44..321738047 100755 --- a/install-deps +++ b/install-deps @@ -174,8 +174,8 @@ elif [[ "$(uname)" == 'Linux' ]]; then else echo "Some portion of the update is failed" fi - # python-software-properties is required for apt-add-repository - sudo apt-get install -y python-software-properties + # software-properties-common is required for apt-add-repository + sudo apt-get install -y software-properties-common echo "==> Found Ubuntu version ${ubuntu_major_version}.xx" if [[ $ubuntu_major_version -lt '12' ]]; then echo '==> Ubuntu version not supported.' @@ -257,8 +257,8 @@ elif [[ "$(uname)" == 'Linux' ]]; then else echo "Some portion of the update is failed" fi - # python-software-properties is required for apt-add-repository - sudo apt-get install -y python-software-properties + # software-properties-common is required for apt-add-repository + sudo apt-get install -y software-properties-common if [[ $elementary_version == '0.3' ]]; then echo '==> Found Ubuntu version 14.xx based elementary installation, installing dependencies' sudo apt-get install -y software-properties-common \