aboutsummaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-05-08 14:55:57 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-05-08 14:55:57 -0400
commit578f59a9f93750662c6c42f6a7223bac75de6018 (patch)
treef8f3ec68ba6c98f09179079986356a7a5525f0d6 /Build
parent51ffddd49c884144e9f9520a3e997a65a94aa57e (diff)
add a wrapper for ssh-keygen
Diffstat (limited to 'Build')
-rw-r--r--Build/NullSoftInstaller.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Build/NullSoftInstaller.hs b/Build/NullSoftInstaller.hs
index 41cf360a2..7bb16f3f7 100644
--- a/Build/NullSoftInstaller.hs
+++ b/Build/NullSoftInstaller.hs
@@ -199,4 +199,7 @@ findCygLibs p = filter iscyg . mapMaybe parse . lines <$> readProcess "ldd" [p]
iscyg f = "cyg" `isPrefixOf` f || "lib" `isPrefixOf` f
wrappers :: [FilePath]
-wrappers = ["standalone\\windows\\ssh.cmd"]
+wrappers =
+ [ "standalone\\windows\\ssh.cmd"
+ , "standalone\\windows\\ssh-keygen.cmd"
+ ]