From 526b59d2bc8d858601a52b89dbdc6054969e024b Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 1 Apr 2014 18:34:01 -0400 Subject: [PATCH] propellor spin --- Propellor/Property/SiteSpecific/GitAnnexBuilder.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs b/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs index b92d5da..04f631f 100644 --- a/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs +++ b/Propellor/Property/SiteSpecific/GitAnnexBuilder.hs @@ -26,12 +26,11 @@ builder arch crontimes = combineProperties "gitannexbuilder" [ "git clone git://git.kitenet.net/gitannexbuilder " ++ builddir , "cd " ++ builddir , "git checkout " ++ map toLower (show arch) - , "git clone git://git-annex.branchable.com/ build" ] `describe` "gitbuilder setup" , check (lacksdir $ builddir "git-annex") $ userScriptProperty builduser [ "cd " ++ builddir - , "git clone https://git-annex.branchable.com/ git-annex" + , "git clone git://git-annex.branchable.com/ build" ] , Cron.niceJob "gitannexbuilder" crontimes builduser ("~/" ++ builddir) "git pull ; ./autobuild" -- The builduser account does not have a password set,