summaryrefslogtreecommitdiff
path: root/Command/Semitrust.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Command/Semitrust.hs')
-rw-r--r--Command/Semitrust.hs13
1 files changed, 5 insertions, 8 deletions
diff --git a/Command/Semitrust.hs b/Command/Semitrust.hs
index 351336b89..e64d418f8 100644
--- a/Command/Semitrust.hs
+++ b/Command/Semitrust.hs
@@ -8,8 +8,7 @@
module Command.Semitrust where
import Command
-import qualified GitRepo as Git
-import qualified Remotes
+import qualified Remote
import UUID
import Trust
import Messages
@@ -24,12 +23,10 @@ seek = [withString start]
start :: CommandStartString
start name = notBareRepo $ do
showStart "semitrust" name
- Remotes.readConfigs
- r <- Remotes.byName name
- return $ Just $ perform r
+ u <- Remote.nameToUUID name
+ return $ Just $ perform u
-perform :: Git.Repo -> CommandPerform
-perform repo = do
- uuid <- getUUID repo
+perform :: UUID -> CommandPerform
+perform uuid = do
trustSet uuid SemiTrusted
return $ Just $ return True