From a499ef1d5c503e30522db76a6141bd6a13c276b5 Mon Sep 17 00:00:00 2001 From: Seb Shader Date: Sun, 6 Aug 2023 11:35:23 -0700 Subject: [PATCH] correct 'run' syntax --- .github/workflows/build-macos.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 81c4779e..2ebe6953 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -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