summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2023-01-13 07:20:04 -0500
committerNed Batchelder <ned@nedbatchelder.com>2023-01-13 07:22:21 -0500
commit7b95cc447e932b16b2dd0c75579fd04186602ac3 (patch)
tree2bf726917accd1e68c9fa1d40273078ecb2323ad
parentd91907e262e2d8ed46bffbbb234f3e372edd9ce1 (diff)
downloadpython-coveragepy-git-7b95cc447e932b16b2dd0c75579fd04186602ac3.tar.gz
build: oops, don't want make comments on the terminal
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 6e2ee44f..50d0a507 100644
--- a/Makefile
+++ b/Makefile
@@ -99,12 +99,12 @@ upgrade: ## Update the *.pip files with the latest packages satisfying *.in
$(PIP_COMPILE) -o requirements/mypy.pip requirements/mypy.in
diff_upgrade: ## Summarize the last `make upgrade`
- # The sort flags sort by the package name first, then by the -/+, and
- # sort by version numbers, so we get a summary with lines like this:
- # -bashlex==0.16 \
- # +bashlex==0.17 \
- # -build==0.9.0 \
- # +build==0.10.0 \
+ @# The sort flags sort by the package name first, then by the -/+, and
+ @# sort by version numbers, so we get a summary with lines like this:
+ @# -bashlex==0.16
+ @# +bashlex==0.17
+ @# -build==0.9.0
+ @# +build==0.10.0
@git diff -U0 | grep -v '^@' | grep == | sort -k1.2,1.99 -k1.1,1.1r -u -V
##@ Pre-builds for prepping the code