Skip to content

Commit 6b89cb0

Browse files
author
Diptorup Deb
authored
Merge pull request #1430 from IntelPython/fix_wheels
fix windows wheels copy cmd
2 parents 25daa86 + 2f44293 commit 6b89cb0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

conda-recipe/bld.bat

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ for /f %%f in ('dir /b /S .\dist') do (
4141

4242
:: Copy wheel package
4343
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
44-
for /f %%f in ('dir /b /S .\dist') do (
45-
copy %%f %WHEELS_OUTPUT_FOLDER%
46-
if %ERRORLEVEL% neq 0 exit 1
47-
)
44+
copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER%
45+
if errorlevel 1 exit 1
4846
)

0 commit comments

Comments
 (0)