https://github.com/python/cpython/commit/9c2f91cde80a6758e0c1390323bf6f7eb4b5d6b5 commit: 9c2f91cde80a6758e0c1390323bf6f7eb4b5d6b5 branch: main author: Nacho Caballero <[email protected]> committer: hugovk <[email protected]> date: 2025-07-20T12:08:00Z summary:
gh-136854: Exit on error in `make venv` (#136856) Co-authored-by: Nacho Caballero <[email protected]> files: M Doc/Makefile diff --git a/Doc/Makefile b/Doc/Makefile index c8a749a02a89ec..84578c5c57f478 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -170,6 +170,7 @@ venv: echo "venv already exists."; \ echo "To recreate it, remove it first with \`make clean-venv'."; \ else \ + set -e; \ echo "Creating venv in $(VENVDIR)"; \ if $(UV) --version >/dev/null 2>&1; then \ $(UV) venv --python=$(PYTHON) $(VENVDIR); \ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
