2ba1559a8e
Added StringContainingQuotedPath, which is used for ActionItemOther. In the process, checked every ActionItemOther for those containing filenames, and made them use quoting. Sponsored-by: Graham Spencer on Patreon
35 lines
857 B
Haskell
35 lines
857 B
Haskell
{- git-annex command
|
|
-
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
module Command.Ungroup where
|
|
|
|
import Command
|
|
import qualified Remote
|
|
import Logs.Group
|
|
import Types.Group
|
|
|
|
import qualified Data.Set as S
|
|
|
|
cmd :: Command
|
|
cmd = command "ungroup" SectionSetup "remove a repository from a group"
|
|
(paramPair paramRemote paramDesc) (withParams seek)
|
|
|
|
seek :: CmdParams -> CommandSeek
|
|
seek = withWords (commandAction . start)
|
|
|
|
start :: [String] -> CommandStart
|
|
start (name:g:[]) = do
|
|
u <- Remote.nameToUUID name
|
|
starting "ungroup" (ActionItemOther (Just (UnquotedString name)))
|
|
(SeekInput [name, g]) $
|
|
perform u (toGroup g)
|
|
start _ = giveup "Specify a repository and a group."
|
|
|
|
perform :: UUID -> Group -> CommandPerform
|
|
perform uuid g = do
|
|
groupChange uuid (S.delete g)
|
|
next $ return True
|