diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-17 23:25:09 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-11-28 00:01:45 -0500 |
commit | 33c7a0392cc9f39f885f50774e980a0bf3643fd6 (patch) | |
tree | 41b80794ded49f3e177e428b2e798a6a938cb5a8 /src/SMAPI.Installer/assets | |
parent | 0f508c755aa679dc63b78507c54b5530d5b972d3 (diff) | |
download | SMAPI-33c7a0392cc9f39f885f50774e980a0bf3643fd6.tar.gz SMAPI-33c7a0392cc9f39f885f50774e980a0bf3643fd6.tar.bz2 SMAPI-33c7a0392cc9f39f885f50774e980a0bf3643fd6.zip |
remove libgdiplus workaround on macOS
This is no longer needed after the .NET 5 migration.
Diffstat (limited to 'src/SMAPI.Installer/assets')
-rw-r--r-- | src/SMAPI.Installer/assets/unix-launcher.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/SMAPI.Installer/assets/unix-launcher.sh b/src/SMAPI.Installer/assets/unix-launcher.sh index 7e892fca..58f7a5ae 100644 --- a/src/SMAPI.Installer/assets/unix-launcher.sh +++ b/src/SMAPI.Installer/assets/unix-launcher.sh @@ -62,15 +62,6 @@ fi ########## # macOS if [ "$(uname)" == "Darwin" ]; then - # fix "DllNotFoundException: libgdiplus.dylib" errors when loading images in SMAPI - if [ -f libgdiplus.dylib ]; then - rm libgdiplus.dylib - fi - if [ -f /Library/Frameworks/Mono.framework/Versions/Current/lib/libgdiplus.dylib ]; then - ln -s /Library/Frameworks/Mono.framework/Versions/Current/lib/libgdiplus.dylib libgdiplus.dylib - fi - - # launch SMAPI dotnet StardewModdingAPI.dll "$@" # Linux |