diff options
author | Joey Hess <joey@kitenet.net> | 2011-09-14 13:48:39 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-09-14 13:48:39 -0400 |
commit | 5a1f10325f218bb2289e263ce1bdfd4a504467e0 (patch) | |
tree | 13f3334257fea7d2c35e0ccad0f6d73a1b4ca34b | |
parent | 949b3f69d0f2b2a5c32a00d05d09a0b312fad35a (diff) |
refactor
-rw-r--r-- | Command/Drop.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Drop.hs b/Command/Drop.hs index 6e688d663..8afffd3cb 100644 --- a/Command/Drop.hs +++ b/Command/Drop.hs @@ -24,7 +24,7 @@ command = [repoCommand "drop" paramPath seek "indicate content of files not currently wanted"] seek :: [CommandSeek] -seek = [withAttrFilesInGit "annex.numcopies" start] +seek = [withNumCopies start] {- Indicates a file's content is not wanted anymore, and should be removed - if it's safe to do so. -} |