From 4de845c7335b5a76c8a9222a45cf4fe2da31db12 Mon Sep 17 00:00:00 2001 From: Giuliano Bellini s294739 Date: Fri, 12 Jan 2024 10:23:16 +0100 Subject: [PATCH] minor fix --- .github/workflows/package.yml | 2 +- .github/workflows/rust.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index f7c0c3ae..77db9658 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -112,7 +112,7 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies - run: apt update -y && apt install -y curl build-essential + run: apt-get update -y && apt-get install -y curl build-essential - name: Install Rust uses: dtolnay/rust-toolchain@stable diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7cc7cb5b..b3f9afc2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -37,7 +37,7 @@ jobs: - name: Install Linux dependencies if: matrix.os == 'ubuntu' - run: apt update -y && apt install -y libpcap-dev libasound2-dev libgtk-3-dev + run: sudo apt-get update -y && apt-get install -y libpcap-dev libasound2-dev libgtk-3-dev - name: Install Windows dependencies if: matrix.os == 'windows' && github.event_name != 'pull_request'