Skip to content

Commit

Permalink
Fix for builds that place Elm make output in subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Sep 6, 2022
1 parent 7938768 commit 8ce169c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implement/elm-fullstack/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ static CommandLineApplication AddMakeCmd(CommandLineApplication app) =>
.AndThen(loweringOk => Elm019Binaries.ElmMake(
loweringOk.compiledAppFiles.ToImmutableDictionary(),
pathToFileWithElmEntryPoint: pathToFileWithElmEntryPoint.ToImmutableList(),
outputFileName: outputFileName,
outputFileName: outputFileName.Replace('\\', '/').Split('/').Last(),
elmMakeCommandAppendix: elmMakeCommandAppendix));
}

Expand Down

0 comments on commit 8ce169c

Please sign in to comment.