Skip to content

Commit 77b5d69

Browse files
committed
Fix package install command formatting
1 parent 66c7f05 commit 77b5d69

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/rust.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Install system libraries
20-
run: sudo apt-get update && sudo apt-get install -y \
21-
pkg-config libfreetype6-dev libfontconfig1-dev
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y pkg-config libfreetype6-dev libfontconfig1-dev
2223
- name: Build
2324
run: cargo build --verbose
2425
- name: Run tests

0 commit comments

Comments
 (0)