Allow building with gpg2.
This commit is contained in:
parent
8688f08804
commit
d5ba9cb728
6 changed files with 17 additions and 6 deletions
|
@ -30,7 +30,7 @@ bundledPrograms = catMaybes
|
|||
#ifndef mingw32_HOST_OS
|
||||
, Just "sh"
|
||||
#endif
|
||||
, ifset SysConfig.gpg "gpg"
|
||||
, SysConfig.gpg
|
||||
, ifset SysConfig.curl "curl"
|
||||
, ifset SysConfig.wget "wget"
|
||||
, ifset SysConfig.bup "bup"
|
||||
|
|
|
@ -31,7 +31,9 @@ tests =
|
|||
, TestCase "curl" $ testCmd "curl" "curl --version >/dev/null"
|
||||
, TestCase "wget" $ testCmd "wget" "wget --version >/dev/null"
|
||||
, TestCase "bup" $ testCmd "bup" "bup --version >/dev/null"
|
||||
, TestCase "gpg" $ testCmd "gpg" "gpg --version >/dev/null"
|
||||
, TestCase "gpg" $ maybeSelectCmd "gpg"
|
||||
[ ("gpg", "--version >/dev/null")
|
||||
, ("gpg2", "--version >/dev/null") ]
|
||||
, TestCase "lsof" $ findCmdPath "lsof" "lsof"
|
||||
, TestCase "ssh connection caching" getSshConnectionCaching
|
||||
] ++ shaTestCases
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue