diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-24 16:28:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-24 16:28:10 -0400 |
commit | d0655bbe7c30e0b417f9d82457fde0a47f9f86a0 (patch) | |
tree | 0b5f604dae54d291651a6c77a31a405e04c46901 /Build/BundledPrograms.hs | |
parent | 0f4ca88ceda2f8a49a3a1bfc60f864c517944832 (diff) |
Include git-receive-pack, git-upload-pack, and git wrappers in the Linux standalone build, and OSX app, so they will be available when it's added to PATH.
Diffstat (limited to 'Build/BundledPrograms.hs')
-rw-r--r-- | Build/BundledPrograms.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/BundledPrograms.hs b/Build/BundledPrograms.hs index ae49f3061..0c2e177f4 100644 --- a/Build/BundledPrograms.hs +++ b/Build/BundledPrograms.hs @@ -22,6 +22,10 @@ bundledPrograms = catMaybes #ifndef mingw32_HOST_OS -- git is not included in the windows bundle , Just "git" + -- Not strictly needed in PATH by git-annex, but called + -- by git when it sshes to a remote. + , Just "git-upload-pack" + , Just "git-receive-pack" #endif , Just "cp" #ifndef mingw32_HOST_OS |