From a64129f5d6187f4fa9de47b767d46ff48c7c3866 Mon Sep 17 00:00:00 2001 From: Matthew M Dean Date: Tue, 14 Jan 2025 17:52:17 -0800 Subject: [PATCH] Fix: Change IsRunningInContainer to nonInteractiveSetup to keep the checks consistent (#4267) --- Source/ACE.Server/Program_Setup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ACE.Server/Program_Setup.cs b/Source/ACE.Server/Program_Setup.cs index 3105c77e02..4c2f6a86ca 100644 --- a/Source/ACE.Server/Program_Setup.cs +++ b/Source/ACE.Server/Program_Setup.cs @@ -218,7 +218,7 @@ private static void DoOutOfBoxSetup(string configFile) Console.WriteLine(); Console.Write($"Enter the Host address for your shard database (default: \"{config.MySql.Shard.Host}\"): "); - if (!IsRunningInContainer) + if (!nonInteractiveSetup) variable = Console.ReadLine(); else {