Use apt-get instead of apt (#938)

This avoids warnings about apt's suitability for use in scripts.

Signed-off-by: Stephen Kitt <steve@sk2.org>

Signed-off-by: Stephen Kitt <steve@sk2.org>
This commit is contained in:
Stephen Kitt 2022-10-13 14:01:14 +02:00 committed by GitHub
parent e3170edb96
commit 89d1193342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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