Skip to content

Commit

Permalink
remove || exit 1 for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Sep 12, 2023
1 parent 815853f commit 62ff6ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_smithy/templates/run_win_build.bat.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ call activate base

:: Provision the necessary dependencies to build the recipe later
echo Installing dependencies
{{ conda_install_tool }}.exe install "python=3.10" pip {{ conda_install_tool_deps }} {{ conda_build_tool_deps }} {{ " ".join(remote_ci_setup) }} -c conda-forge --strict-channel-priority --yes || exit 1
{{ conda_install_tool }}.exe install "python=3.10" pip {{ conda_install_tool_deps }} {{ conda_build_tool_deps }} {{ " ".join(remote_ci_setup) }} -c conda-forge --strict-channel-priority --yes
if !errorlevel! neq 0 exit /b !errorlevel!

{%- if local_ci_setup %}
Expand Down

0 comments on commit 62ff6ab

Please sign in to comment.