GhostOfElectric

Results 5 comments of GhostOfElectric

If the 1.1.1 C/C++ windows library is downloaded from the DuckDB website and an environment variable JULIA_DUCKDB_LIBRARY is set to point at duckdb.dll within it, then the latest version will...

Is the link enough detail? This is my first pull request, sorry.

I haven't done that no, and I can't really, the need to change the easy_hook settings comes from my work's proxy and I can't build Julia there.

Changed it to: ```julia # This file should contain site-specific commands to be executed on Julia startup; # Users may store their own personal commands in `~/.julia/config/startup.jl`. println("Defo read startup...

@KristofferC It works fine if done like that: ``` julia> using Pkg julia> Downloads.DOWNLOADER[] = nothing julia> Downloads.EASY_HOOK[] = (easy, info) -> begin Downloads.Curl.setopt(easy, Downloads.Curl.CURLOPT_PROXY, "http://madeupproxy:8080") Downloads.Curl.setopt(easy, Downloads.Curl.CURLOPT_PROXYUSERPWD, ":") Downloads.Curl.setopt(easy,...