fix message
authorJoey Hess <joeyh@joeyh.name>
Tue, 22 Apr 2025 17:36:54 +0000 (13:36 -0400)
committerJoey Hess <joeyh@joeyh.name>
Tue, 22 Apr 2025 17:36:54 +0000 (13:36 -0400)
also dead code removal

Command/Map.hs

index 71a46db51d0b55ea484a56485bb78704f9b202f0..41ce5f0b3ea5247cc0221152859c9b1b633ad9e0 100644 (file)
@@ -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