Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PatchLoaderMod/Doorstop/LinuxDoorstopManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class LinuxDoorstopManager : DoorstopManager {
"export LD_PRELOAD",
"export DOORSTOP_ENABLE",
"export DOORSTOP_INVOKE_DLL_PATH",
"./Cities.x64 $@"
"exec ./Cities.x64 $@"
);

public LinuxDoorstopManager(string expectedTargetAssemblyPath, Logger logger) : base(expectedTargetAssemblyPath, logger) {
Expand Down Expand Up @@ -111,4 +111,4 @@ protected override bool IsLatestLoaderVersion() {
return LoaderMD5.Equals(loaderHash);
}
}
}
}
4 changes: 2 additions & 2 deletions PatchLoaderMod/Doorstop/MacOSDoorstopManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class MacOSDoorstopManager: DoorstopManager {
"export DYLD_INSERT_LIBRARIES",
"export DOORSTOP_ENABLE",
"export DOORSTOP_INVOKE_DLL_PATH",
"./Cities.app/Contents/MacOS/Cities $@"
"exec ./Cities.app/Contents/MacOS/Cities $@"
);

public MacOSDoorstopManager(string expectedTargetAssemblyPath, Logger logger) : base(expectedTargetAssemblyPath, logger) {
Expand Down Expand Up @@ -122,4 +122,4 @@ protected override bool IsLatestLoaderVersion() {
return true;
}
}
}
}