From 2f442939f546deaf6511c8b28431be1cdd683aff Mon Sep 17 00:00:00 2001 From: "Komarova, Evseniia" Date: Fri, 5 Apr 2024 14:18:43 +0200 Subject: [PATCH] fix windows wheels copy cmd --- conda-recipe/bld.bat | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/conda-recipe/bld.bat b/conda-recipe/bld.bat index f2ca6a3723..1a74face5c 100644 --- a/conda-recipe/bld.bat +++ b/conda-recipe/bld.bat @@ -41,8 +41,6 @@ for /f %%f in ('dir /b /S .\dist') do ( :: Copy wheel package if NOT "%WHEELS_OUTPUT_FOLDER%"=="" ( - for /f %%f in ('dir /b /S .\dist') do ( - copy %%f %WHEELS_OUTPUT_FOLDER% - if %ERRORLEVEL% neq 0 exit 1 - ) + copy dist\numba_dpex*.whl %WHEELS_OUTPUT_FOLDER% + if errorlevel 1 exit 1 )