diff --git a/lib/GHCup/Errors.hs b/lib/GHCup/Errors.hs index 2b679c8..abfd6c0 100644 --- a/lib/GHCup/Errors.hs +++ b/lib/GHCup/Errors.hs @@ -138,7 +138,7 @@ data AlreadyInstalled = AlreadyInstalled Tool Version instance Pretty AlreadyInstalled where pPrint (AlreadyInstalled tool ver') = (pPrint tool <> text "-" <> pPrint ver') <+> text "is already installed;" - <+> text "if you really want to reinstall it, you may want to run 'ghcup install " <+> pPrint tool <+> " --force" <+> (pPrint ver' <> text "'") + <+> text "if you really want to reinstall it, you may want to run 'ghcup install" <+> pPrint tool <+> "--force" <+> (pPrint ver' <> text "'") -- | The Directory is supposed to be empty, but wasn't.