Skip to content

Commit

Permalink
correct 'run' syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sebshader committed Aug 6, 2023
1 parent c7f8c9f commit a499ef1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
uses: actions/checkout@v3
- name: Install Jack
run: |
- curl -L -o jack.tgz https://github.com/jackaudio/jack2-releases/releases/download/v1.9.22/jack2-macOS-universal-v1.9.22.tar.gz
- test ! -e jack.tgz || tar -xvf jack.tgz "jack*.pkg"
- for f in ./jack*.pkg; do test -e "${f}" || continue; sudo installer -pkg "${f}" -target /; done
- rm -f jack*.pkg jack.tgz
curl -L -o jack.tgz https://github.com/jackaudio/jack2-releases/releases/download/v1.9.22/jack2-macOS-universal-v1.9.22.tar.gz
test ! -e jack.tgz || tar -xvf jack.tgz "jack*.pkg"
for f in ./jack*.pkg; do test -e "${f}" || continue; sudo installer -pkg "${f}" -target /; done
rm -f jack*.pkg jack.tgz
- name: Install Homebrew Dependencies
run: |
brew update
Expand Down

0 comments on commit a499ef1

Please sign in to comment.