diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-19 13:08:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-19 13:08:05 -0400 |
commit | 3531ce5c54e380d15d54d838c90f4ebe311782af (patch) | |
tree | 9ff4c4efffd4a654dda4f73bd77da55bb0f53956 /TypeInternals.hs | |
parent | d23fc22f0e17c95765f940f81f733f9580e19107 (diff) |
fix remote uuid learning bug
Diffstat (limited to 'TypeInternals.hs')
-rw-r--r-- | TypeInternals.hs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/TypeInternals.hs b/TypeInternals.hs index e8f7cb9e7..4a9d2653e 100644 --- a/TypeInternals.hs +++ b/TypeInternals.hs @@ -10,8 +10,10 @@ import Data.String.Utils import qualified GitRepo as Git --- command-line flags -data Flag = Force deriving (Eq, Read, Show) +data Flag = + Force | -- command-line flags + RemotesRead -- indicates that remote repo configs have been read + deriving (Eq, Read, Show) -- git-annex's runtime state type doesn't really belong here, -- but it uses Backend, so has to be here to avoid a depends loop. |