summaryrefslogtreecommitdiff
path: root/src/Propellor/Git
diff options
context:
space:
mode:
authorJoey Hess2018-05-29 15:09:43 -0400
committerJoey Hess2018-05-29 15:09:43 -0400
commit7191bc66146ca1556d77911e53fe484c26195ac1 (patch)
treecbfedf4c75bbebb5290c8dc77077552c54914d3f /src/Propellor/Git
parentf35f487831872bf4254b2712f2f49abbb03318e1 (diff)
fix build
Diffstat (limited to 'src/Propellor/Git')
-rw-r--r--src/Propellor/Git/VerifiedBranch.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Git/VerifiedBranch.hs b/src/Propellor/Git/VerifiedBranch.hs
index e56379f4..61f5baa0 100644
--- a/src/Propellor/Git/VerifiedBranch.hs
+++ b/src/Propellor/Git/VerifiedBranch.hs
@@ -19,7 +19,7 @@ verifyOriginBranch originbranch = do
]
-- gpg is picky about perms
modifyFileMode privDataDir (removeModes otherGroupModes)
- verified <- boolSystemEnv "git" ["verify-commit", originbranch]
+ verified <- boolSystemEnv "git" [Param "verify-commit", Param originbranch]
(Just [("GNUPGHOME", privDataDir)])
nukeFile $ privDataDir </> "trustdb.gpg"
nukeFile $ privDataDir </> "pubring.gpg"