summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
diff options
context:
space:
mode:
authorJoey Hess2018-10-03 13:06:13 -0400
committerJoey Hess2018-10-03 13:06:13 -0400
commit8a36d5ed51c14789dce4d8ce20951e66172354c4 (patch)
tree6fed4344c42bdc76db980c42178936c09e57045b /src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
parent427aee951ad41aae9d923d231d60a2a02d3822ca (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs')
-rw-r--r--src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs b/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
index e3d21ac1..bf2741c1 100644
--- a/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
+++ b/src/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs
@@ -173,10 +173,10 @@ stackInstalled = withOS "stack installed" $ \w o ->
tmptar = "/root/stack.tar.gz"
tmpdir = "/root/stack"
-armAutoBuilder :: DebianSuite -> Architecture -> Flavor -> Property (HasInfo + Debian)
-armAutoBuilder suite arch flavor =
+armAutoBuilder :: (DebianSuite -> Architecture -> Flavor -> Property (HasInfo + Debian)) -> DebianSuite -> Architecture -> Flavor -> Property (HasInfo + Debian)
+armAutoBuilder baseautobuilder suite arch flavor =
propertyList "arm git-annex autobuilder" $ props
- & standardAutoBuilder suite arch flavor
+ & baseautobuilder suite arch flavor
& buildDepsApt
-- Works around ghc crash with parallel builds on arm.
& (homedir </> ".cabal" </> "config")