Skip to content

Commit

Permalink
Merge pull request haskell#9376 from cabalism/typo/executing-build-pl…
Browse files Browse the repository at this point in the history
…an-space-space-serially

Avoid double space in "Executing install plan ..."
  • Loading branch information
mergify[bot] authored Nov 1, 2023
2 parents d1344d9 + 78618b6 commit d644b79
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cabal-install/src/Distribution/Client/ProjectBuilding.hs
Original file line number Diff line number Diff line change
Expand Up @@ -672,9 +672,9 @@ rebuildTargets
info verbosity $
"Executing install plan "
++ case buildSettingNumJobs of
NumJobs n -> " in parallel using " ++ show n ++ " threads."
UseSem n -> " in parallel using a semaphore with " ++ show n ++ " slots."
Serial -> " serially."
NumJobs n -> "in parallel using " ++ show n ++ " threads."
UseSem n -> "in parallel using a semaphore with " ++ show n ++ " slots."
Serial -> "serially."

createDirectoryIfMissingVerbose verbosity True distBuildRootDirectory
createDirectoryIfMissingVerbose verbosity True distTempDirectory
Expand Down
6 changes: 6 additions & 0 deletions changelog.d/pr-9376
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
synopsis: Avoid a double space in "Executing install plan ..."
description:
The "Executing·install·plan··serially" and other similar "Executing install
plan··..." outputs no longer contain double spaces.
packages: cabal-install
prs: #9376

0 comments on commit d644b79

Please sign in to comment.