Skip to content

Commit 11406e5

Browse files
committed
Fix message suffix due to warnings with dump-logs: warning
1 parent 868b072 commit 11406e5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ Other enhancements:
1414

1515
Bug fixes:
1616

17+
* Restore message suffix `due to warnings` with `dump-logs: warning` (broken
18+
with Stack 2.11.1).
19+
1720
## v2.13.0.1 (release candidate) - 2023-09-16
1821

1922
Release notes:

src/Stack/Build/Execute.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ withExecuteEnv bopts boptsCli baseConfigOpts locals globalPackages snapshotPacka
578578
fillSep
579579
( ( fillSep
580580
( flow "Dumping log file"
581-
: [ flow msgSuffix | L.null msgSuffix ]
581+
: [ flow msgSuffix | not (L.null msgSuffix) ]
582582
)
583583
<> ":"
584584
)

0 commit comments

Comments
 (0)