Skip to content

Commit 6fdae2b

Browse files
committed
Fix latest-changes.md make target
1 parent e14d800 commit 6fdae2b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Changes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ Revision history for pgTAP
66

77
1.3.1 2023-09-24T15:29:42Z
88
--------------------------
9-
109
* Revamped the handling of data type declarations in `col_type_is()` to always
1110
accurately normalize data type representations, whether using aliases, such
1211
as `varchar` for `character varying`, or more complicated types that failed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ updatecheck_setup: updatecheck_deps
485485
updatecheck_run: updatecheck_setup installcheck
486486

487487
latest-changes.md: Changes
488-
perl -e 'while (<>) {last if /^(v?\Q${DISTVERSION}\E)/; } print "Changes for v${DISTVERSION}:\n"; while (<>) { last if /^\s*$$/; s/^\s+//; print }' Changes > $@
488+
perl -e 'while (<>) {last if /^(v?\Q${DISTVERSION}\E)/; } print "Changes for v${DISTVERSION}\n"; while (<>) { last if /^\s*$$/; s/\s+$$//; if (/^\s*[*]/) { print "\n" } else { s/^\s+/ / } print } print "\n"' $< > $@
489489

490490
#
491491
# STOLEN FROM pgxntool

0 commit comments

Comments
 (0)