Skip to content

Commit 364a2f7

Browse files
Remove the extra \ in shebang causing script failures when the wine_wrapper is used (#272)
* Remove the extra `\` in shebang causing script failures when the wine_wrapper is used * Patch to exclue Patreon update on Pull Requests only * Remove Patreon updates from a PR, will be handled by the Main merge --------- Co-authored-by: Simon (Darkside) Jackson <darkside@zenithmoon.com>
1 parent 8931d02 commit 364a2f7

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

.github/workflows/pullrequest.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,6 @@ jobs:
2626
- name: Clone Repository
2727
uses: actions/checkout@v4
2828

29-
- name: Fetch GH Sponsors
30-
uses: ./FetchGHSponsors
31-
env:
32-
GH_TOKEN: ${{ secrets.SPONSORS_TOKEN }}
33-
GH_LOGIN: MonoGame
34-
35-
- name: Fetch Patreons
36-
uses: ./FetchPatreons
37-
env:
38-
PATREON_ACCESS_TOKEN: ${{ secrets.PATREON_ACCESS_TOKEN }}
39-
4029
- name: Setup .NET Core SDK
4130
uses: actions/setup-dotnet@v4
4231
with:

website/content/public/downloads/winesetup/net6_mgfxc_wine_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ then
6161
echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile
6262

6363
# create a wine wrapper script to work around oddities with symlinked wine64
64-
echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
64+
echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
6565
chmod +x "$HOME/.winemonogame/wine_wrapper.sh"
6666

6767
# symlink wine64 to our wrapper script

website/content/public/downloads/winesetup/net8_mgfxc_wine_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ then
7575
echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile
7676

7777
# create a wine wrapper script to work around oddities with symlinked wine64
78-
echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
78+
echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
7979
chmod +x "$HOME/.winemonogame/wine_wrapper.sh"
8080

8181
# symlink wine64 to our wrapper script

website/content/public/downloads/winesetup/net9_mgfxc_wine_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ then
7575
echo -e "\nexport PATH=\"\$PATH:$HOME/.winemonogame\"" >> ~/.zprofile
7676

7777
# create a wine wrapper script to work around oddities with symlinked wine64
78-
echo -e "#\!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
78+
echo -e "#!/bin/bash\nwine \"\$@\"" > "$HOME/.winemonogame/wine_wrapper.sh"
7979
chmod +x "$HOME/.winemonogame/wine_wrapper.sh"
8080

8181
# symlink wine64 to our wrapper script

0 commit comments

Comments
 (0)