From 226897142791a69b70905fd0442708f6ae6d9043 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 8 Sep 2015 16:46:38 -0400 Subject: propellor spin --- src/wrapper.hs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/wrapper.hs b/src/wrapper.hs index a73ed969..e367fe69 100644 --- a/src/wrapper.hs +++ b/src/wrapper.hs @@ -74,7 +74,13 @@ wrapper args propellordir propellorbin = do fetchUpstreamBranch propellordir distrepo changeWorkingDirectory propellordir void $ boolSystem "git" [Param "remote", Param "rm", Param "origin"] - , void $ boolSystem "git" [Param "clone", Param netrepo, File propellordir] + , do + void $ boolSystem "git" [Param "clone", Param netrepo, File propellordir] + changeWorkingDirectory propellordir + -- Rename origin to upstream and avoid + -- git push to that read-only repo. + void $ boolSystem "git" [Param "remote", Param "rename", Param "origin", Param "upstream"] + void $ boolSystem "git" [Param "config", Param "--unset", Param "branch.master.remote", Param "upstream"] ) checkRepo = whenM (doesFileExist disthead <&&> doesFileExist (propellordir "propellor.cabal")) $ do -- cgit v1.2.3