https://github.com/python/cpython/commit/1172f4ccfe3c0edae846a97343c858afdaa30b1d commit: 1172f4ccfe3c0edae846a97343c858afdaa30b1d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-07-20T12:14:42Z summary:
[3.13] gh-136854: Exit on error in `make venv` (GH-136856) (#136861) Co-authored-by: Nacho Caballero <[email protected]> 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]
