summaryrefslogtreecommitdiffstats
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2022-09-09 10:52:47 +0100
committerBram Moolenaar <Bram@vim.org>2022-09-09 10:52:47 +0100
commit5bc13453b2dd8067597793e32c4f94aa3031054a (patch)
tree65ec7297bde790aaa686e0af77cb28d8aa50a393 /.appveyor.yml
parentc572ad508f53bd89aa29081fc583f17ef1f0f123 (diff)
patch 9.0.0421: MS-Windows makefiles are inconsistently namedv9.0.0421
Problem: MS-Windows makefiles are inconsistently named. Solution: Use consistent names. (Ken Takata, closes #11088)
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 80f8e38f0b..866725f0b1 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -26,9 +26,9 @@ test_script:
- cd src/testdir
# Testing with MSVC gvim
- path C:\Python35-x64;%PATH%
- - nmake -f Make_dos.mak VIMPROG=..\gvim
- - nmake -f Make_dos.mak clean
+ - nmake -f Make_mvc.mak VIMPROG=..\gvim
+ - nmake -f Make_mvc.mak clean
# Testing with MSVC console version
- - nmake -f Make_dos.mak VIMPROG=..\vim
+ - nmake -f Make_mvc.mak VIMPROG=..\vim
# vim: sw=2 sts=2 et ts=8 sr