Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid double space in "Executing install plan ..." #9376

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading