diff options
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/Branch.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Annex/Branch.hs b/Annex/Branch.hs index 652ba6ff9..4a36de66a 100644 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -76,8 +76,8 @@ getBranch :: Annex Git.Ref getBranch = maybe (hasOrigin >>= go >>= use) return =<< branchsha where go True = do - inRepo $ Git.Command.run "branch" - [Param $ show name, Param $ show originname] + inRepo $ Git.Command.run + [Param "branch", Param $ show name, Param $ show originname] fromMaybe (error $ "failed to create " ++ show name) <$> branchsha go False = withIndex' True $ |