浏览代码

Try to fix MSVC build

It's complaining about not being able to find minirent.h. Probably due
to missing include path. So I added /I flag. Not sure if it will fix it.
rexim 4 年之前
父节点
当前提交
c0b8cd6ae2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      .github/workflows/ci.yml

+ 2 - 2
.github/workflows/ci.yml

@@ -45,5 +45,5 @@ jobs:
         shell: cmd
         # this replaces default PowerShell, which can't fail the build
         run: |
-          cl.exe examples\ls.c
-          ls.exe
+          cl.exe /I\examples examples\ls.c
+          .\ls.exe