summaryrefslogtreecommitdiff
path: root/Command/Semitrust.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-05-15 02:02:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-05-15 02:02:46 -0400
commit56bc3e95cabb85e5f23e30b453f90438c33efbb8 (patch)
treec13ac69cfc2b5ba9582aa5c1ebd427bc0d337b16 /Command/Semitrust.hs
parentb400984ddf9aeb24c3d67e87cfeb29470618636c (diff)
refactor some boilerplate
Diffstat (limited to 'Command/Semitrust.hs')
-rw-r--r--Command/Semitrust.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Command/Semitrust.hs b/Command/Semitrust.hs
index e64d418f8..fc1bcbbcd 100644
--- a/Command/Semitrust.hs
+++ b/Command/Semitrust.hs
@@ -24,9 +24,9 @@ start :: CommandStartString
start name = notBareRepo $ do
showStart "semitrust" name
u <- Remote.nameToUUID name
- return $ Just $ perform u
+ next $ perform u
perform :: UUID -> CommandPerform
perform uuid = do
trustSet uuid SemiTrusted
- return $ Just $ return True
+ next $ return True