diff options
author | w0rp <devw0rp@gmail.com> | 2017-09-06 19:50:51 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-09-06 19:50:51 +0100 |
commit | 6661ff9794bd4653f53812d668db3f9eb710a7a1 (patch) | |
tree | 6dc344303daa45517e2a70c4bd9424661b07cb27 | |
parent | a9823cbfd530b7278242c60fd25ba89509f2e3fa (diff) | |
download | ale-6661ff9794bd4653f53812d668db3f9eb710a7a1.zip |
Use absolute paths for the unzipping part in AppVeyor
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 3129ef8c..a2119d40 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -11,7 +11,7 @@ install: - ps: 'Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586w32.zip -OutFile C:\vim.zip' - ps: Add-Type -A System.IO.Compression.FileSystem - - ps: "[IO.Compression.ZipFile]::ExtractToDirectory('vim.zip', 'vim')" + - ps: "[IO.Compression.ZipFile]::ExtractToDirectory('C:\\vim.zip', 'C:\\vim')" test_script: - C:\vim\vim80\vim.exe --version |