From eeb4e12f750e449f7ed466f1ee27709fb34a6e3b Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 24 Jun 2023 15:48:21 -0400 Subject: [PATCH] fix Linux/macOS build error --- src/SMAPI.Installer/InteractiveInstaller.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMAPI.Installer/InteractiveInstaller.cs b/src/SMAPI.Installer/InteractiveInstaller.cs index c21ccdf5..c256be42 100644 --- a/src/SMAPI.Installer/InteractiveInstaller.cs +++ b/src/SMAPI.Installer/InteractiveInstaller.cs @@ -178,7 +178,7 @@ namespace StardewModdingApi.Installer if (context.IsWindows) { this.PrintError($"This is the installer for Linux/macOS. Run the 'install on Windows.exe' file instead."); - this.AwaitConfirmation(); + this.AwaitConfirmation(allowUserInput); return; } #endif