Skip to content
Closed
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
4 changes: 2 additions & 2 deletions cabal-install/Distribution/Client/CmdInstall.hs
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,7 @@ installBuiltExe
installBuiltExe verbosity overwritePolicy
sourceDir exeName finalExeName
installdir InstallMethodSymlink = do
notice verbosity $ "Symlinking '" <> exeName <> "'"
notice verbosity $ "Symlinking '" <> exeName <> "' to '" <> installdir </> finalExeName <> "'"
symlinkBinary
overwritePolicy
installdir
Expand All @@ -845,7 +845,7 @@ installBuiltExe verbosity overwritePolicy
installBuiltExe verbosity overwritePolicy
sourceDir exeName finalExeName
installdir InstallMethodCopy = do
notice verbosity $ "Copying '" <> exeName <> "'"
notice verbosity $ "Copying '" <> exeName <> "' to '" <> installdir </> finalExeName <> "'"
exists <- doesPathExist destination
case (exists, overwritePolicy) of
(True , NeverOverwrite ) -> pure False
Expand Down