File tree 1 file changed +10
-7
lines changed
1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -203,13 +203,16 @@ jobs:
203
203
- name : Set up environment
204
204
if : startsWith(matrix.os, 'windows-')
205
205
shell : bash
206
- run : >-
207
- choco.exe install --no-progress --yes --ignore-detected-reboot --allow-downgrade
208
- --install-arguments "'ADDLOCAL=ALL'"
209
- ${{ matrix.arch == 'win32' && '--x86' || '' }}
210
- mitkerberos || true
211
-
212
- echo "C:\Program Files${{ matrix.arch == 'win32' && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH" >> $GITHUB_PATH
206
+ run : |
207
+ choco.exe install \
208
+ --no-progress \
209
+ --yes \
210
+ --ignore-detected-reboot \
211
+ --allow-downgrade \
212
+ --install-arguments "'ADDLOCAL=ALL'" \
213
+ ${{ endsWith(matrix.version, '-win32') && '--x86' || '' }} mitkerberos || true
214
+
215
+ echo "C:\Program Files${{ endsWith(matrix.version, '-win32')' && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH" >> $GITHUB_PATH
213
216
214
217
- name : Download sdist
215
218
uses : actions/download-artifact@v2
You can’t perform that action at this time.
0 commit comments