From 815e340bc755e866dc6f39100847df01796a6a14 Mon Sep 17 00:00:00 2001 From: ScottPJones Date: Tue, 5 Jun 2018 12:22:45 -0400 Subject: [PATCH] Update REQUIRE and use Pkg3 on v0.7 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0d652f0..936125e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,7 +42,7 @@ build_script: - IF EXIST .git\shallow (git fetch --unshallow) - C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils); versioninfo(); - if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"StrTables\"); else; Pkg.up(); end" + if VERSION < v\"0.7.0-DEV.5183\"; Pkg.clone(pwd(), \"StrTables\"); else; using Pkg; Pkg.up(); end" test_script: - - C:\projects\julia\bin\julia -e "Pkg.test(\"StrTables\")" + - C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"StrTables\")"