Skip to content

Commit

Permalink
Clean up directory names moving Elm compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Viir committed Oct 11, 2024
1 parent 0c7c3ac commit 55128c2
Show file tree
Hide file tree
Showing 38 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,4 @@ jobs:
# elm-test-rs also wrote the following before crashing:
# elm: security: createProcess: runInteractiveProcess: exec: does not exist (No such file or directory)
if: ${{ !contains( matrix.environment, 'macos') }}
run: ./publish/pine elm-test-rs ./implement/pine/ElmTime/compile-elm-program
run: ./publish/pine elm-test-rs ./implement/pine/Elm/elm-compiler
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"type": "application",
"source-directories": [
"src",
"./../compile-elm-program/src"
"./../elm-compiler/src"
],
"elm-version": "0.19.1",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion implement/pine/ElmInteractive/ElmInteractive.cs
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ public static string PrepareJavaScriptToEvaluateElm(

public static Result<string, IImmutableDictionary<IReadOnlyList<string>, ReadOnlyMemory<byte>>> LoadCompileElmProgramCodeFiles() =>
DotNetAssembly.LoadDirectoryFilesFromManifestEmbeddedFileProviderAsDictionary(
directoryPath: ["ElmTime", "compile-elm-program"],
directoryPath: ["Elm", "elm-compiler"],
assembly: typeof(ElmInteractive).Assembly);

private record EvaluateSubmissionResponseStructure
Expand Down
2 changes: 1 addition & 1 deletion implement/pine/pine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<ItemGroup>
<EmbeddedResource
Include="ElmTime\compile-elm-program\**\*.elm;ElmTime\compile-elm-program\**\*.json;" />
Include="Elm\elm-compiler\**\*.elm;Elm\elm-compiler\**\*.json;" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 55128c2

Please sign in to comment.