Skip to content
Snippets Groups Projects
  • Massimiliano Culpo's avatar
    c65cde4c
    Avoid update and upgrades to brew (#17815) · c65cde4c
    Massimiliano Culpo authored
    Ci is currently failing on brew update with the error:
    ```
    Error: Cannot install bazelisk because conflicting formulae are installed.
      bazel: because Bazelisk replaces the bazel binary
    
    Please `brew unlink bazel` before continuing.
    
    Unlinking removes a formula's symlinks from /usr/local. You can
    link the formula again after the install finishes. You can --force this
    install, but the build may fail or cause obscure side effects in the
    resulting software.
    ```
    Avoiding:
    ```
    $ brew update
    $ brew upgrade
    ```
    solves the issue by preventing the risk of conflicting formulae
    Avoid update and upgrades to brew (#17815)
    Massimiliano Culpo authored
    Ci is currently failing on brew update with the error:
    ```
    Error: Cannot install bazelisk because conflicting formulae are installed.
      bazel: because Bazelisk replaces the bazel binary
    
    Please `brew unlink bazel` before continuing.
    
    Unlinking removes a formula's symlinks from /usr/local. You can
    link the formula again after the install finishes. You can --force this
    install, but the build may fail or cause obscure side effects in the
    resulting software.
    ```
    Avoiding:
    ```
    $ brew update
    $ brew upgrade
    ```
    solves the issue by preventing the risk of conflicting formulae