Windows: Remove cygwin ssh, the newer version of which has stopped honoring the setting of HOME. Instead, copy msysgit's ssh into PATH.
This commit is contained in:
parent
00e426f738
commit
ce285ea6fa
4 changed files with 31 additions and 7 deletions
|
@ -35,13 +35,14 @@ bundledPrograms = catMaybes
|
|||
#endif
|
||||
, Just "rsync"
|
||||
#ifndef darwin_HOST_OS
|
||||
#ifndef mingw32_HOST_OS
|
||||
-- OS X has ssh installed by default.
|
||||
-- Linux probably has ssh, but not guaranteed.
|
||||
-- On Windows, msysgit provides ssh, but not in PATH,
|
||||
-- so we ship our own.
|
||||
-- On Windows, msysgit provides ssh.
|
||||
, Just "ssh"
|
||||
, Just "ssh-keygen"
|
||||
#endif
|
||||
#endif
|
||||
#ifndef mingw32_HOST_OS
|
||||
, Just "sh"
|
||||
#endif
|
||||
|
|
|
@ -92,7 +92,7 @@ uninstaller = "git-annex-uninstall.exe"
|
|||
gitInstallDir :: Exp FilePath
|
||||
gitInstallDir = fromString "$PROGRAMFILES\\Git"
|
||||
|
||||
-- This intentionall has a different name than git-annex or
|
||||
-- This intentionally has a different name than git-annex or
|
||||
-- git-annex-webapp, since it is itself treated as an executable file.
|
||||
-- Also, on XP, the filename is displayed, not the description.
|
||||
startMenuItem :: Exp FilePath
|
||||
|
@ -152,6 +152,9 @@ makeInstaller gitannex license htmlhelp extrabins launchers = nsis $ do
|
|||
section "cmd" [] $ do
|
||||
setOutPath "$INSTDIR\\cmd"
|
||||
mapM_ addfile (gitannex:extrabins)
|
||||
-- copy msysgit's ssh into cmd so it's always in PATH
|
||||
-- (bin is only in PATH from git bash)
|
||||
copyFiles [] "$INSTDIR\\bin\\ssh.exe" "$INSTDIR\\cmd\\ssh.exe"
|
||||
section "meta" [] $ do
|
||||
setOutPath "$INSTDIR\\doc\\git\\html"
|
||||
addfile htmlhelp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue