Skip to content

Commit

Permalink
add -F before -e to fix error when building Blosc
Browse files Browse the repository at this point in the history
error is: could not spawn `echo 1.5.0`: no such file or directory (ENOENT)

echo.exe is in the Git/bin directory under the Julia install, which gets added to the path by juliarc.jl
so need to include juliarc.jl before evaluating Pkg.build
  • Loading branch information
tkelman committed Nov 16, 2014
1 parent 047c3ba commit d531c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ install:
build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
- C:\projects\julia\bin\julia -e "versioninfo(); Pkg.init(); Pkg.add(\"DataFrames\"); Pkg.clone(pwd(), \"HDF5\"); Pkg.build(\"HDF5\")"
- C:\projects\julia\bin\julia -F -e "versioninfo(); Pkg.init(); Pkg.add(\"DataFrames\"); Pkg.clone(pwd(), \"HDF5\"); Pkg.build(\"HDF5\")"

test_script:
- C:\projects\julia\bin\julia test\runtests.jl

0 comments on commit d531c08

Please sign in to comment.