Skip to content

Commit

Permalink
debug info for building
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfworsoe committed Jun 21, 2019
1 parent e88c1d3 commit 653e78d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,10 @@ mskbindir =
hosturl = "https://www.mosek.com/downloads/default_dns.txt"

mkpath(dldir)
success(download_cmd(hosturl, joinpath(dldir,"downloadhostname"))) || error("Failed to get MOSEK download host")
cmd = download_cmd(hosturl, joinpath(dldir,"downloadhostname"))
@info "Download cmd = $cmd"
run(cmd)
#success(download_cmd(hosturl, joinpath(dldir,"downloadhostname"))) || error("Failed to get MOSEK download host")
downloadhost =
open(joinpath(dldir,"downloadhostname"),"r") do f
strip(read(f,String))
Expand Down

0 comments on commit 653e78d

Please sign in to comment.