]> git.ipfire.org Git - thirdparty/git.git/commitdiff
ci/install-depends: attempt to fix "brew cask" stuff
authorJunio C Hamano <gitster@pobox.com>
Fri, 15 Jan 2021 02:51:02 +0000 (18:51 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 15 Jan 2021 03:08:56 +0000 (19:08 -0800)
We run "git pull" against "$cask_repo"; clarify that we are
expecting not to have any of our own modifications and running "git
pull" to merely update, by passing "--ff-only" on the command line.

Also, the "brew cask install" command line triggers an error message
that says:

    Error: Calling brew cask install is disabled! Use brew install
    [--cask] instead.

In addition, "brew install caskroom/cask/perforce" step triggers an
error that says:

    Error: caskroom/cask was moved. Tap homebrew/cask instead.

Attempt to see if blindly following the suggestion in these error
messages gets us into a better shape.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
ci/install-dependencies.sh

index 0229a77f7d281fa9717e359f34c634f118035a62..0b1184e04adedb1eba415a401c93331cdc139d6a 100755 (executable)
@@ -44,13 +44,13 @@ osx-clang|osx-gcc)
        test -z "$BREW_INSTALL_PACKAGES" ||
        brew install $BREW_INSTALL_PACKAGES
        brew link --force gettext
-       brew cask install --no-quarantine perforce || {
+       brew install --cask --no-quarantine perforce || {
                # Update the definitions and try again
                cask_repo="$(brew --repository)"/Library/Taps/homebrew/homebrew-cask &&
-               git -C "$cask_repo" pull --no-stat &&
-               brew cask install --no-quarantine perforce
+               git -C "$cask_repo" pull --no-stat --ff-only &&
+               brew install --cask --no-quarantine perforce
        } ||
-       brew install caskroom/cask/perforce
+       brew install homebrew/cask/perforce
        case "$jobname" in
        osx-gcc)
                brew install gcc@9