diff --git a/articles/getting_started/1_setting_up_your_os_for_development_macos.md b/articles/getting_started/1_setting_up_your_os_for_development_macos.md index f11d2a64..ee957c56 100644 --- a/articles/getting_started/1_setting_up_your_os_for_development_macos.md +++ b/articles/getting_started/1_setting_up_your_os_for_development_macos.md @@ -52,7 +52,7 @@ MonoGame provides a setup script that can be executed to setup the Wine environm 1. Enter the following command: ```sh - brew install wget p7zip curl && brew install --cask wine-stable + brew install wget p7zip curl && brew install --cask wine-stable && xattr -dr com.apple.quarantine "/Applications/Wine Stable.app" ``` 1. Now that the prerequisites are installed, download the [mgfxc_wine_setup.sh](https://monogame.net/downloads/net9_mgfxc_wine_setup.sh) script and execute it by entering the following command in the terminal: diff --git a/articles/tutorials/building_2d_games/02_getting_started/index.md b/articles/tutorials/building_2d_games/02_getting_started/index.md index 5b04c73f..aa321f55 100644 --- a/articles/tutorials/building_2d_games/02_getting_started/index.md +++ b/articles/tutorials/building_2d_games/02_getting_started/index.md @@ -156,6 +156,7 @@ Open a new *Terminal* window and execute the following commands: ```sh brew install p7zip brew install --cask wine-stable +xattr -dr com.apple.quarantine "/Applications/Wine Stable.app" wget -qO- https://monogame.net/downloads/net8_mgfxc_wine_setup.sh | bash ```