From c0bb8e5b8f0d82fc49f4b1515c58a8838b7651f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20R=C3=A4tzel?= Date: Tue, 14 Sep 2021 13:09:11 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20crash=20in=20`deploy`=20option=20on=20`ru?= =?UTF-8?q?n-server`=20command=20=F0=9F=90=9B=F0=9F=A7=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- implement/elm-fullstack/Program.cs | 4 ++-- implement/elm-fullstack/elm-fullstack.csproj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/implement/elm-fullstack/Program.cs b/implement/elm-fullstack/Program.cs index efd8baa6..b3990f1b 100644 --- a/implement/elm-fullstack/Program.cs +++ b/implement/elm-fullstack/Program.cs @@ -14,7 +14,7 @@ namespace elm_fullstack { public class Program { - static public string AppVersionId => "2021-09-13"; + static public string AppVersionId => "2021-09-14"; static int AdminInterfaceDefaultPort => 4000; @@ -354,7 +354,7 @@ static CommandLineApplication AddRunServerCmd(CommandLineApplication app) => }; var initElmAppState = - deletePreviousProcessOption.HasValue() && !copyProcessOption.HasValue(); + (deletePreviousProcessOption.HasValue() || processStorePath == null) && !copyProcessOption.HasValue(); var compositionLogEvent = ElmFullstack.WebHost.ProcessStoreSupportingMigrations.CompositionLogRecordInFile.CompositionEvent.EventForDeployAppConfig( diff --git a/implement/elm-fullstack/elm-fullstack.csproj b/implement/elm-fullstack/elm-fullstack.csproj index f22b37d8..290deacd 100644 --- a/implement/elm-fullstack/elm-fullstack.csproj +++ b/implement/elm-fullstack/elm-fullstack.csproj @@ -5,8 +5,8 @@ net5.0 elm_fullstack elm-fs - 2021.0913.0.0 - 2021.0913.0.0 + 2021.0914.0.0 + 2021.0914.0.0