File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
cabal-install/src/Distribution/Client
cabal-testsuite/PackageTests/CustomPreProcess Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ internalSetupMethod verbosity options bt args = do
545
545
" Using internal setup method with build-type "
546
546
++ show bt
547
547
++ " and args:\n "
548
- ++ show args
548
+ ++ unwords args
549
549
-- NB: we do not set the working directory of the process here, because
550
550
-- we will instead pass the -working-dir flag when invoking the Setup script.
551
551
-- Note that the Setup script is guaranteed to support this flag, because
@@ -618,7 +618,7 @@ selfExecSetupMethod verbosity options bt args0 = do
618
618
" Using self-exec internal setup method with build-type "
619
619
++ show bt
620
620
++ " and args:\n "
621
- ++ show args
621
+ ++ unwords args
622
622
path <- getExecutablePath
623
623
invoke verbosity path args options
624
624
Original file line number Diff line number Diff line change @@ -60,5 +60,5 @@ main = defaultMainWithHooks
60
60
do exitCode <- rawSystem path args
61
61
case exitCode of ExitSuccess -> return ()
62
62
f@ (ExitFailure _) -> fail $ " callProcess " ++ show path
63
- ++ " " ++ show args ++ " failed: "
63
+ ++ " " ++ unwords args ++ " failed: "
64
64
++ show f
You can’t perform that action at this time.
0 commit comments