Skip to content

Commit 5c09809

Browse files
committed
fix typo in bld.bat
1 parent c74c5be commit 5c09809

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

conda-recipe-cf/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set "CC=icx"
66
set "CXX=icx"
77

88
%PYTHON% -m build -w -n -x
9-
if %ERRORLEVEL% neq "0" exit 1
9+
if %ERRORLEVEL% neq 0 exit 1
1010

1111
for /f %%f in ('dir /b /S .\dist') do (
1212
%PYTHON% -m pip install %%f ^

conda-recipe/bld.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set "CC=icx"
66
set "CXX=icx"
77

88
%PYTHON% -m build -w -n -x
9-
if %ERRORLEVEL% neq "0" exit 1
9+
if %ERRORLEVEL% neq 0 exit 1
1010

1111
for /f %%f in ('dir /b /S .\dist') do (
1212
%PYTHON% -m pip install %%f ^

0 commit comments

Comments
 (0)