ci: fix shell syntax for Ubuntu runner

Fix the Install Dependencies section of the CI Ubuntu runner to use `|`
instead of `>-` for the command list block, which is necessary for
running multiple shell commands.

Signed-off-by: Rafael Kitover <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2025-05-10 16:50:00 +00:00
parent d2762a95bf
commit bd0a59cc5f
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 4 additions and 2 deletions

View File

@ -43,11 +43,13 @@ jobs:
submodules: recursive
- name: Install Dependencies
run: >-
run: |
sudo add-apt-repository ppa:hrzhu/sdl3-backport
sudo apt update
bash installdeps
if [ "${{ matrix.build_compiler }}" = clang ]; then sudo apt -y install clang; fi
if [ "${{ matrix.build_compiler }}" = clang ]; then
sudo apt -y install clang
fi
- name: Install xvfb
run: sudo apt -y install xvfb