From f05aeb3e4690ed6b439a22421d8b964a5f86e501 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Thu, 13 Oct 2022 14:01:14 +0200 Subject: [PATCH] Use apt-get instead of apt (#938) This avoids warnings about apt's suitability for use in scripts. Signed-off-by: Stephen Kitt Signed-off-by: Stephen Kitt --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d1157df..cb9c427a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,8 +17,8 @@ jobs: - name: Install GCC 9 and SDL2 run: | sudo add-apt-repository ppa:ubuntu-toolchain-r/test - sudo apt update - sudo apt install g++-9 libsdl2-dev + sudo apt-get update + sudo apt-get install g++-9 libsdl2-dev - name: Build Stella run: | ./configure && make -j2 all