From 7b3d7a8f788d6a159f5b021af29c88c23ca3218d Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 22 Apr 2025 13:36:54 -0400 Subject: [PATCH] fix message also dead code removal --- Command/Map.hs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Command/Map.hs b/Command/Map.hs index 71a46db51d..41ce5f0b3e 100644 --- a/Command/Map.hs +++ b/Command/Map.hs @@ -26,9 +26,6 @@ import Types.TrustLevel import qualified Remote.Helper.Ssh as Ssh import qualified Utility.Dot as Dot --- a link from the first repository to the second (its remote) -data Link = Link Git.Repo Git.Repo - -- a repo and its remotes type RepoRemotes = (Git.Repo, [Git.Repo]) @@ -68,7 +65,7 @@ runViewer file [] = do return True runViewer file ((c, ps):rest) = ifM (liftIO $ inSearchPath c) ( do - showLongNote $ UnquotedString $ "running: " ++ c ++ unwords (toCommand ps) + showLongNote $ UnquotedString $ "running: " ++ c ++ " " ++ unwords (toCommand ps) showOutput liftIO $ boolSystem c ps , runViewer file rest