From 7f777da871eb5c216a5b2f29b9ec43f62c78fb5a Mon Sep 17 00:00:00 2001 From: Dimitre Date: Wed, 11 Sep 2024 09:44:11 -0300 Subject: [PATCH] [scripts] revert aptitude change --- scripts/ci/package_builds.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci/package_builds.sh b/scripts/ci/package_builds.sh index 733a03f2012..6dacfe4caf4 100755 --- a/scripts/ci/package_builds.sh +++ b/scripts/ci/package_builds.sh @@ -14,10 +14,11 @@ ROOT=$(realpath "$ROOT") echo "##[group]apt update" if [[ "$(uname -s)" == "Linux" ]]; then + sudo apt-get -y install aptitude #for ubuntu 22.04 we need to install wine32 #sudo dpkg --add-architecture i386 sudo apt-get update - sudo aptitude -y install wine64 aptitude + sudo aptitude -y install wine64 fi echo "##[endgroup]"