Skip to content

Commit d644b79

Browse files
authored
Merge pull request #9376 from cabalism/typo/executing-build-plan-space-space-serially
Avoid double space in "Executing install plan ..."
2 parents d1344d9 + 78618b6 commit d644b79

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

cabal-install/src/Distribution/Client/ProjectBuilding.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -672,9 +672,9 @@ rebuildTargets
672672
info verbosity $
673673
"Executing install plan "
674674
++ case buildSettingNumJobs of
675-
NumJobs n -> " in parallel using " ++ show n ++ " threads."
676-
UseSem n -> " in parallel using a semaphore with " ++ show n ++ " slots."
677-
Serial -> " serially."
675+
NumJobs n -> "in parallel using " ++ show n ++ " threads."
676+
UseSem n -> "in parallel using a semaphore with " ++ show n ++ " slots."
677+
Serial -> "serially."
678678

679679
createDirectoryIfMissingVerbose verbosity True distBuildRootDirectory
680680
createDirectoryIfMissingVerbose verbosity True distTempDirectory

changelog.d/pr-9376

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
synopsis: Avoid a double space in "Executing install plan ..."
2+
description:
3+
The "Executing·install·plan··serially" and other similar "Executing install
4+
plan··..." outputs no longer contain double spaces.
5+
packages: cabal-install
6+
prs: #9376

0 commit comments

Comments
 (0)