We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23ac07e commit f298a1dCopy full SHA for f298a1d
.github/workflows/release-binaries-windows.yml
@@ -32,7 +32,9 @@ jobs:
32
- name: Setup crlf
33
shell: bash
34
run: |
35
- cat /c/hostedtoolcache/windows/Python/3.9.13/x64/pyconfig.h
+ for f in `find /c/hostedtoolcache/windows/Python/3.9.13/x64/ -iname pyconfig.h`; do
36
+ cat $f
37
+ done
38
git config --global core.autocrlf false
39
# - name: Setup Python
40
# id: setup-python
0 commit comments