diff options
author | Jean Jordaan <jean.jordaan@gmail.com> | 2015-04-03 14:21:50 +0700 |
---|---|---|
committer | Jean Jordaan <jean.jordaan@gmail.com> | 2015-04-03 14:27:34 +0700 |
commit | bccae54d10cdd91f3397acaad25f7b816151efa4 (patch) | |
tree | 23f774c6deef833f11c00049c4bdefcf030a9d2b | |
parent | 65f6eedf1802395a60b876d5892af9ee4cc7226f (diff) |
Steer towards deduplication
-rw-r--r-- | Command/Import.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/Import.hs b/Command/Import.hs index 2da26a96b..17cb49db1 100644 --- a/Command/Import.hs +++ b/Command/Import.hs @@ -89,7 +89,7 @@ start mode (srcfile, destfile) = | isDirectory s = notoverwriting "(is a directory)" | otherwise = ifM (Annex.getState Annex.force) ( liftIO $ nukeFile destfile - , notoverwriting "(use --force to override)" + , notoverwriting "(use --force to override, or a duplication option such as --deduplicate to clean up)" ) notoverwriting why = error $ "not overwriting existing " ++ destfile ++ " " ++ why checkdup dupa notdupa = do |