Skip to content

Commit

Permalink
fix if-statements
Browse files Browse the repository at this point in the history
  • Loading branch information
mibmo committed Jun 10, 2022
1 parent 70c661f commit 394ade6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
# Download dependencies depending on platform
- name: Download build tools
if: matrix.os == "ubuntu-latest"
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install build-essential libtool autopoint
- name: Download build tools
if: matrix.os == "macos-latest"
if: matrix.os == 'macos-latest'
run: sudo brew install libtool automake gettext

- name: Checkout repository
Expand Down

0 comments on commit 394ade6

Please sign in to comment.