From a1fa698bc3c526a9cbd874d2a8eb138fe188f313 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Sat, 4 Jan 2025 18:46:40 +0200 Subject: [PATCH] chore: Update autoconf installation command to use dpkg with force option Signed-off-by: EnderIce2 --- .github/workflows/makefile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index eecebf97..88d20d06 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -63,7 +63,7 @@ jobs: echo "Autoconf version is not 2.69, performing additional steps..." sudo apt -y install wget dpkg wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb - sudo apt -y --allow-downgrades install ./autoconf_2.69-11.1_all.deb + sudo dpkg --force-all -i ./autoconf_2.69-11.1_all.deb fi - name: Clone All