Skip to content

Commit

Permalink
Fix Mac OS GitHub workflow
Browse files Browse the repository at this point in the history
Prior to this change, CI was failing with the following error:

    ==> Installing asciidoc dependency: python@3.11
    ==> Pouring python@3.11--3.11.3.monterey.bottle.tar.gz
    Error: The `brew link` step did not complete successfully
    The formula built, but is not symlinked into /usr/local
    Could not symlink bin/2to3
    Target /usr/local/bin/2to3
    already exists. You may want to remove it:
      rm '/usr/local/bin/2to3'

    To force the link and overwrite all conflicting files:
      brew link --overwrite python@3.11

    To list all files that would be deleted:
      brew link --overwrite --dry-run python@3.11

Explicitly link with overwrite.

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
  • Loading branch information
Lukas Fleischer committed Apr 11, 2023
1 parent 5394e98 commit 98ff4db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- name: Install dependencies (MacOS)
run: |
brew update
brew install --overwrite python
brew install automake
brew install asciidoc
brew install gettext
Expand Down

0 comments on commit 98ff4db

Please sign in to comment.