Compilation error: openFile: does not exist (No such file or directory) *

When I try to compile the Main.elm file (via Ctrl + F5) using Visual Studio Code, I get the following error:

Error: elm-make: c: \ Users \ Bizmonger \ Documents \ Visual: openFile: does not exist (No such file or directory)

Note:

I am trying to compile an Elm solution that I cloned from GitHub .

Here's the parent directory: enter image description here

Here's the src directory with the elm files:

enter image description here

Why am I getting this error?

enter image description here

+3


source to share


1 answer


The error message looks like it truncates the folder name after Visual

, but I am assuming you are in the folder named Visual Studio Projects

. Try moving the project to the folder tree without a space in the name.



+5


source







All Articles