From 92e99bb1058dd837c451675175efb8511c5f8e15 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Sat, 4 Nov 2023 22:38:25 +0100 Subject: ci: don't install unzip It is no longer needed now that luarocks isn't used. --- .github/scripts/install_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/scripts') diff --git a/.github/scripts/install_deps.sh b/.github/scripts/install_deps.sh index 91c1d04081..0533bd7fae 100755 --- a/.github/scripts/install_deps.sh +++ b/.github/scripts/install_deps.sh @@ -12,7 +12,7 @@ done os=$(uname -s) if [[ $os == Linux ]]; then sudo apt-get update - sudo apt-get install -y build-essential cmake curl gettext ninja-build unzip + sudo apt-get install -y build-essential cmake curl gettext ninja-build if [[ $CC == clang ]]; then DEFAULT_CLANG_VERSION=$(echo | clang -dM -E - | grep __clang_major | awk '{print $3}') -- cgit