Skip to content

Commit 8469066

Browse files
committed
typos
1 parent b164b83 commit 8469066

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/windows-arm.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,15 @@ jobs:
4444
echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
4545
4646
- name: Install CMake and Ninja for Win-ARM64
47-
shell: pwsh
48-
run: |
49-
Invoke-WebRequest https://github.com/Kitware/CMake/releases/download/v3.29.4/cmake-3.29.4-windows-arm64.msi -OutFile cmake-arm64.msi
50-
Start-Process msiexec.exe -ArgumentList "/i cmake-arm64.msi /quiet /norestart" -Wait
51-
echo "C:\Program Files\CMake\bin" >> $env:GITHUB_PATH
52-
53-
Invoke-WebRequest https://github.com/ninja-build/ninja/releases/download/v1.13.1/ninja-winarm64.zip -OutFile ninja-winarm64.zip
54-
Expand-Archive ninja-winarm64.zip -DestinationPath ninja
55-
Copy-Item ninja\ninja.exe -Destination "C:\Windows\System32"
47+
shell: pwsh
48+
run: |
49+
Invoke-WebRequest https://github.com/Kitware/CMake/releases/download/v3.29.4/cmake-3.29.4-windows-arm64.msi -OutFile cmake-arm64.msi
50+
Start-Process msiexec.exe -ArgumentList "/i cmake-arm64.msi /quiet /norestart" -Wait
51+
echo "C:\Program Files\CMake\bin" >> $env:GITHUB_PATH
52+
53+
Invoke-WebRequest https://github.com/ninja-build/ninja/releases/download/v1.13.1/ninja-winarm64.zip -OutFile ninja-winarm64.zip
54+
Expand-Archive ninja-winarm64.zip -DestinationPath ninja
55+
Copy-Item ninja\ninja.exe -Destination "C:\Windows\System32"
5656
5757
- name: Set env variables
5858
run: |

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ jobs:
131131
cat tools/LICENSE_win32.txt >> LICENSE.txt
132132
python -m pip wheel -w dist -vv .
133133
# move the mis-named scipy_openblas64-none-any.whl to a platform-specific name
134-
if [[ -e dist/*any*.whl ]]; then
135-
for f in dist/*.whl; do mv $f "${f/%any.whl/$WHEEL_PLAT.whl}"; done
136-
fi
134+
if [[ -e dist/*any*.whl ]]; then
135+
for f in dist/*.whl; do mv $f "${f/%any.whl/$WHEEL_PLAT.whl}"; done
136+
fi
137137
138138
- name: Set up different Python
139139
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)