summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-09-06 23:47:51 +0100
committerw0rp <devw0rp@gmail.com>2017-09-06 23:47:51 +0100
commit963e16870b6a902378dede3a2b78a2be5a11ee0c (patch)
tree8c368701a564397f02cb0fd37012180785895858 /.appveyor.yml
parent02aad45aa646ab48aa0baf9184a25fc6543a78ac (diff)
downloadale-963e16870b6a902378dede3a2b78a2be5a11ee0c.zip
Try and set up Vader only if needed too
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 2983f6a9..45322804 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -19,10 +19,13 @@ install:
-OutFile C:\rt.zip
[IO.Compression.ZipFile]::ExtractToDirectory('C:\rt.zip', 'C:\vim')
}
- - git clone https://github.com/junegunn/vader.vim C:\vader
- - cd C:\vader
- - git checkout -qf c6243dd81c98350df4dec608fa972df98fa2a3af
- - cd C:\
+ # Clone Vader and check out the commit we want
+ - ps: >-
+ if (!(Test-Path -Path C:\vader)){
+ git clone https://github.com/junegunn/vader.vim C:\vader
+ cd C:\vader
+ git checkout -qf c6243dd81c98350df4dec608fa972df98fa2a3af
+ }
test_script:
- cd C:\projects\ale