Skip to content

Commit

Permalink
Merge pull request #36 from porterjamesj/fix-appveyor
Browse files Browse the repository at this point in the history
fix appveyor config
  • Loading branch information
porterjamesj authored May 21, 2017
2 parents a59aebb + b4efe18 commit e04f0d1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ environment:
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"

install:
# Download most recent Julia Windows binary
- ps: (new-object net.webclient).DownloadFile($env:JULIA_URL), "C:\projects\julia-binary.exe")
# Run installer silently, output to C:\projects\julia
# Download most recent Julia Windows binary
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
- ps: (new-object net.webclient).DownloadFile($env:JULIA_URL, "C:\projects\julia-binary.exe")
# Run installer silently, output to C:\projects\julia
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

build_script:
Expand Down

0 comments on commit e04f0d1

Please sign in to comment.