diff options
Diffstat (limited to 'Command')
-rw-r--r-- | Command/Unlock.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Command/Unlock.hs b/Command/Unlock.hs index afee10145..aeb270516 100644 --- a/Command/Unlock.hs +++ b/Command/Unlock.hs @@ -34,8 +34,7 @@ start file (key, _) = do perform :: FilePath -> Key -> CommandPerform perform dest key = do unlessM (inAnnex key) $ error "content not present" - - checkDiskSpace key + unlessM (checkDiskSpace Nothing key 0) $ error "cannot unlock" src <- inRepo $ gitAnnexLocation key tmpdest <- fromRepo $ gitAnnexTmpLocation key |