Browse Source

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 years ago
parent
commit
c0b8cd6ae2
1 changed files with 2 additions and 2 deletions
  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