diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-03 16:22:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-03 16:22:53 -0400 |
commit | b88637fff10d4d845404882e4ec95cfc071dcac0 (patch) | |
tree | c4e2067d6bbe2a8de44c2bc25212473409bb4802 /Command/Trust.hs | |
parent | a9d0538da559c29509c50b664e31ea3b23b7bc14 (diff) |
prevent trust commands from trying to do things in a bare repo
Since they need to stage changes, they would actually, if allowed to run,
succeed, but wipe out existing trust.log content.
Diffstat (limited to 'Command/Trust.hs')
-rw-r--r-- | Command/Trust.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Trust.hs b/Command/Trust.hs index 3fbff68b8..ea661da2a 100644 --- a/Command/Trust.hs +++ b/Command/Trust.hs @@ -22,7 +22,7 @@ seek :: [CommandSeek] seek = [withString start] start :: CommandStartString -start name = do +start name = notBareRepo $ do showStart "trust" name Remotes.readConfigs r <- Remotes.byName name |