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 c0e74da commit 2a92bc7Copy full SHA for 2a92bc7
conda-recipe/bld.bat
@@ -18,11 +18,13 @@ set "FN=Windows-IntelLLVM.cmake"
18
19
rem Save the original file, and copy patched file to
20
rem fix the issue with IntelLLVM integration with cmake on Windows
21
-dir "%PLATFORM_DIR%\%FN%"
22
-copy /Y "%PLATFORM_DIR%\%FN%" .
23
-if errorlevel 1 exit 1
24
-copy /Y .github\workflows\Windows-IntelLLVM.cmake "%PLATFORM_DIR%"
25
+if EXIST "%PLATFORM_DIR%" (
+ dir "%PLATFORM_DIR%\%FN%"
+ copy /Y "%PLATFORM_DIR%\%FN%" .
+ if errorlevel 1 exit 1
+ copy /Y .github\workflows\Windows-IntelLLVM.cmake "%PLATFORM_DIR%"
26
27
+)
28
29
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
30
rem Install and assemble wheel package from the build bits
0 commit comments