We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e11e830 commit e7f4f53Copy full SHA for e7f4f53
deps/build.jl
@@ -57,8 +57,10 @@ function try_ci_installation()
57
elseif Sys.iswindows()
58
".dll", WHEELS["windows"]
59
end
60
- run(`wget $url --output-file=knitro.whl`)
61
- run(`unzip knitro.whl`)
+ if !isdir(joinpath(@__DIR__, "knitro"))
+ run(`wget $url --output-file=knitro.whl`)
62
+ run(`unzip knitro.whl`)
63
+ end
64
filename = joinpath(@__DIR__, "knitro", "lib", "libknitro$(ext)")
65
write_depsfile("", filename)
66
return
0 commit comments