You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are two errors with sending the correct command to elm-oracle in Windows:
In lib/elmOracle.js:
The file paths need to be encased in strings in order to work with paths containing spaces. This can be fixed by replacing line 55 with var results = spawn(getCmdPath(), ['/c (', '"'+executablePath+'"', '"'+filePath+'"', prefix, ')'], options)
For some reason windowsVerbatimArguments: true needs to be added to options. I don't know what this flag does.
The text was updated successfully, but these errors were encountered:
I experienced the same issue, but my paths have no spaces and I also editted my elmOracle.js as per Flopster above but still experience same error. For more details see issue filed @elm-oracle below.
There are two errors with sending the correct command to elm-oracle in Windows:
In lib/elmOracle.js:
var results = spawn(getCmdPath(), ['/c (', '"'+executablePath+'"', '"'+filePath+'"', prefix, ')'], options)
windowsVerbatimArguments: true
needs to be added tooptions
. I don't know what this flag does.The text was updated successfully, but these errors were encountered: