Fixing macos-install-wine.sh (#21218)

This commit is contained in:
Victor Lyuboslavsky
2024-08-09 16:47:07 +02:00
committed by GitHub
parent e6bbb768d3
commit 973715b0ee
+2 -1
View File
@@ -7,7 +7,8 @@ set -eo pipefail
brew_wine(){
# Wine reference: https://wiki.winehq.org/MacOS
# Wine can be installed without brew via a distribution such as https://github.com/Gcenx/macOS_Wine_builds/releases/tag/9.0 or by building from source.
brew install --cask --no-quarantine https://raw.githubusercontent.com/Homebrew/homebrew-cask/1ecfe82f84e0f3c3c6b741d3ddc19a164c2cb18d/Casks/w/wine-stable.rb; exit 0
curl -O https://raw.githubusercontent.com/Homebrew/homebrew-cask/1ecfe82f84e0f3c3c6b741d3ddc19a164c2cb18d/Casks/w/wine-stable.rb
brew install --cask --no-quarantine wine-stable.rb; exit 0
}