diff options
Diffstat (limited to 'Command/AddUrl.hs')
-rw-r--r-- | Command/AddUrl.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Command/AddUrl.hs b/Command/AddUrl.hs index 9197d6844..41a947db8 100644 --- a/Command/AddUrl.hs +++ b/Command/AddUrl.hs @@ -75,7 +75,11 @@ download url file = do liftIO $ createDirectoryIfMissing True (parentDir tmp) stopUnless (downloadUrl [url] tmp) $ do backend <- chooseBackend file - let source = KeySource { keyFilename = file, contentLocation = tmp } + let source = KeySource + { keyFilename = file + , contentLocation = tmp + , inodeCache = Nothing + } k <- genKey source backend case k of Nothing -> stop |