blob: 419d9caa43e663c23a092b9d13c85945bf1e987c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{- git-annex command
-
- Copyright 2010 Joey Hess <joey@kitenet.net>
-
- Licensed under the GNU GPL version 3 or higher.
-}
module Command.DropKey where
import Command
import qualified Annex
import qualified Backend
import LocationLog
import Types
import Content
import Messages
import Key
command :: [Command]
command = [Command "dropkey" (paramRepeating paramKey) seek
"drops annexed content for specified keys"]
seek :: [CommandSeek]
seek = [withKeys start]
start :: CommandStartKey
start key = do
present <- inAnnex key
force <- Annex.getState Annex.force
if not present
then return Nothing
else if not force
then error "dropkey is can cause data loss; use --force if you're sure you want to do this"
else do
showStart "dropkey" (show key)
return $ Just $ perform key
perform :: Key -> CommandPerform
perform key = do
removeAnnex key
return $ Just $ cleanup key
cleanup :: Key -> CommandCleanup
cleanup key = do
logStatus key ValueMissing
return True
|