Skip to content

Commit 0ae64f8

Browse files
authored
Merge pull request #14 from isuruf/windows-copy
use copy command on windows
2 parents c669301 + db4b655 commit 0ae64f8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

recipe/bld.bat

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ mkdir %RECIPE_DIR%\..\build_artifacts
5151
mkdir %RECIPE_DIR%\..\build_artifacts\pypi_wheels
5252

5353
for %%f in (dist\*.whl) do (
54-
cp %%f %RECIPE_DIR%\..\build_artifacts\pypi_wheels\
54+
copy %%f %RECIPE_DIR%\..\build_artifacts\pypi_wheels\
55+
if errorlevel 1 exit 1
5556
%PYTHON% -m pip install %%f
5657
)

0 commit comments

Comments
 (0)