所以intellij中有两个File Watcher
任务在保存时运行。第一个
/usr/local/bin/elm make $ContentRoot$/src/Main.elm --output /dev/
第二
/usr/local/bin/elm make $ContentRoot$/src/Main.elm --output ../secondProject/static/index.html
现在,当我在代码中出现错误时,第一个任务运行平稳,但是第二个任务将抛出
/usr/local/bin/elm make /Users/mihkel/programming/firstProject/src/Main.elm --output ../secondProject/static/index.html
elm: /Users/mihkel/programming/firstProject/elm-stuff/0.19.0/Main.elmi: removeLink: does not exist (No such file or directory)
elm: thread blocked indefinitely in an MVar operation
这似乎是因为第一次运行会将Main.elmi
中的elm-stuff/0.19.0/
删除
当我从终端运行任务时,它们可以正常工作(使用Mac)。 知道解决办法吗?