Skip to content

Commit

Permalink
Fix crash in deploy option on run-server command 🐛🧹
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Sep 14, 2021
1 parent 86fbba7 commit c0bb8e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions implement/elm-fullstack/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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(
Expand Down
4 changes: 2 additions & 2 deletions implement/elm-fullstack/elm-fullstack.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>elm_fullstack</RootNamespace>
<AssemblyName>elm-fs</AssemblyName>
<AssemblyVersion>2021.0913.0.0</AssemblyVersion>
<FileVersion>2021.0913.0.0</FileVersion>
<AssemblyVersion>2021.0914.0.0</AssemblyVersion>
<FileVersion>2021.0914.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c0bb8e5

Please sign in to comment.