I have a code that does something like:
run(̣`$julia_path $script_path`)
It works perfect on linux (where I’m developing), but I’m getting the following error on AppVeyor (Windows):
ERROR: LoadError: syntax: invalid escape sequence
in include_from_node1 at .\loading.jl:488
in process_options at .\client.jl:265
in _start at .\client.jl:321
while loading C:\Users\appveyor\AppData\Local\Temp\1\jl_D347.tmp.jl, in expression starting on line 2
Information: Error During Test
Got an exception of type LoadError outside of a @test
LoadError: failed process: Process(`'C:\projects\julia\bin\julia' 'C:\Users\appveyor\AppData\Local\Temp\1\jl_D347.tmp.jl'`, ProcessExited(1)) [1]
I tried by changing the command a couple of times, but it looks like there is a problem in command interpolation of the julia_path
variable on Windows (Julia 0.5). Is It possible?
AppVeyor log: AppVeyor
Best regards,