shelly 0.9.7.2 → 0.9.7.3
raw patch · 2 files changed
+4/−2 lines, 2 files
Files
- Shelly.hs +3/−1
- shelly.cabal +1/−1
Shelly.hs view
@@ -767,7 +767,9 @@ sshPairs' :: (FilePath -> [Text] -> ShIO a) -> Text -> [(FilePath, [Text])] -> ShIO a sshPairs' run' server actions = do escaping False $ do- let ssh_commands = surround '\'' $ foldl1 ((mappend) . (mappend " && ")) (map toSSH actions)+ let ssh_commands = surround '\'' $ foldl1+ (\memo next -> memo `mappend` " && " `mappend` next)+ (map toSSH actions) run' "ssh" $ [server, ssh_commands] where toSSH (exe,args) = show_command exe args
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 0.9.7.2+Version: 0.9.7.3 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides a single module for convenient