Skip to content

Commit

Permalink
Maybe fix failing command
Browse files Browse the repository at this point in the history
  • Loading branch information
ffried committed Mar 13, 2024
1 parent 62883bf commit 9b53842
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/generate-cross-compilation-sdk/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ runs:
run: |
if [ "${RUNNER_OS}" = 'macOS' ] && [[ "${RUNNER_OS_VERSION}" =~ ^13(\.[0-9]+(\.[0-9]+)?)?$ ]]; then
echo 'Re-linking Python 3.12 and Python to avoid conflicts with Homebrew on macOS 13'
brew unlink [email protected] || true
brew link --overwrite [email protected] || true
brew unlink [email protected]
brew link --overwrite [email protected]
fi
brew install cmake colima docker ninja
brew install cmake colima docker ninja || brew link --overwrite [email protected]
- name: Start Colima
shell: bash
run: colima start
Expand Down

0 comments on commit 9b53842

Please sign in to comment.