File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -55,19 +55,21 @@ jobs:
5555 fetch-depth : 0
5656
5757 - name : Check curl version BEFORE
58- if : matrix.setup.os == 'windows-latest'
59- run : " C:\P rogram Files\G it\b in\s h.exe" -xc "curl --version"
58+ if : ${{ matrix.setup.os == 'windows-latest' }}
59+ run : |
60+ "C:\Program Files\Git\bin\sh.exe" -xc "curl --version"
6061
6162 - name : Install Choco Deps
62- if : matrix.setup.os == 'windows-latest'
63+ if : ${{ matrix.setup.os == 'windows-latest' }}
6364 run : |
6465 choco install curl --yes
6566 echo "C:\ProgramData\chocolatey\bin" >> $GITHUB_PATH
6667 curl --version
6768
6869 - name : Check curl version AFTER
69- if : matrix.setup.os == 'windows-latest'
70- run : " C:\P rogram Files\G it\b in\s h.exe" -xc "curl --version"
70+ if : ${{ matrix.setup.os == 'windows-latest' }}
71+ run : |
72+ "C:\Program Files\Git\bin\sh.exe" -xc "curl --version"
7173
7274 - name : ccache
7375 uses : hendrikmuhs/ccache-action@v1.2.11
You can’t perform that action at this time.
0 commit comments