From 7b95cc447e932b16b2dd0c75579fd04186602ac3 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 13 Jan 2023 07:20:04 -0500 Subject: build: oops, don't want make comments on the terminal --- Makefile | 12 ++++++------ 1 file 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 -- cgit v1.2.1