diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-12-09 15:42:16 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-12-09 15:52:11 -0400 |
commit | b5c8ba7db3ea2eb4f1cd28e49cadb5fd348ca738 (patch) | |
tree | 81d2f8bca341e56bb20d01d68e0a60812e285aa2 /Annex/Init.hs | |
parent | 7f00b7eaf0877e791194e7dfed5abefbb091ee86 (diff) |
move InodeSentinal from direct mode code to its own module
Will be used outside of direct mode for v6 unlocked files, and is already
used outside of direct mode when adding files to annex.
Diffstat (limited to 'Annex/Init.hs')
-rw-r--r-- | Annex/Init.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Annex/Init.hs b/Annex/Init.hs index 7eea0dfa1..997312c31 100644 --- a/Annex/Init.hs +++ b/Annex/Init.hs @@ -32,9 +32,9 @@ import Annex.UUID import Annex.Link import Config import Annex.Direct -import Annex.Content.Direct import Annex.Environment import Annex.Hook +import Annex.InodeSentinal import Upgrade #ifndef mingw32_HOST_OS import Utility.UserInfo @@ -96,7 +96,7 @@ initialize' = do , unlessM isBare switchHEADBack ) - createInodeSentinalFile + createInodeSentinalFile False uninitialize :: Annex () uninitialize = do |