diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-28 18:55:49 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-28 18:55:49 -0400 |
commit | 9d82e815ff5307187d195fd2529420ef7970c412 (patch) | |
tree | 13cc2e6548d9bdc3ebae3aecabcce01257240ac8 /Command | |
parent | dc54214404dbe6e9d602a8a14c08411ca3eaceda (diff) |
change name of numcopies attribute
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Drop.hs | 2 | ||||
-rw-r--r-- | Command/Fsck.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Command/Drop.hs b/Command/Drop.hs index 168aa92bd..7c4fbea60 100644 --- a/Command/Drop.hs +++ b/Command/Drop.hs @@ -18,7 +18,7 @@ import Messages import Utility seek :: [SubCmdSeek] -seek = [withAttrFilesInGit "git-annex-numcopies" start] +seek = [withAttrFilesInGit "annex.numcopies" start] {- Indicates a file's content is not wanted anymore, and should be removed - if it's safe to do so. -} diff --git a/Command/Fsck.hs b/Command/Fsck.hs index 4341f85cd..9acecfce6 100644 --- a/Command/Fsck.hs +++ b/Command/Fsck.hs @@ -14,7 +14,7 @@ import Messages import Utility seek :: [SubCmdSeek] -seek = [withAll (withAttrFilesInGit "git-annex-numcopies") start] +seek = [withAll (withAttrFilesInGit "annex.numcopies") start] {- Checks a file's backend data for problems. -} start :: SubCmdStartAttrFile |