diff options
author | Joey Hess <joey@kitenet.net> | 2011-12-09 13:32:09 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-12-09 13:38:28 -0400 |
commit | 95e748cbd4bb858a3b87621e60f5b43d53b50480 (patch) | |
tree | 2f39680098816016b7c18a33e7596eb4069ea235 /Command/DropKey.hs | |
parent | 252b2e92b0ddd5c97565d37c84771b471b6b5082 (diff) |
inverted logic
Diffstat (limited to 'Command/DropKey.hs')
-rw-r--r-- | Command/DropKey.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/DropKey.hs b/Command/DropKey.hs index ae2ad8b6a..aaaa22466 100644 --- a/Command/DropKey.hs +++ b/Command/DropKey.hs @@ -21,7 +21,7 @@ seek :: [CommandSeek] seek = [withKeys start] start :: Key -> CommandStart -start key = stopUnless (not <$> inAnnex key) $ do +start key = stopUnless (inAnnex key) $ do unlessM (Annex.getState Annex.force) $ error "dropkey can cause data loss; use --force if you're sure you want to do this" showStart "dropkey" (show key) |