diff options
Diffstat (limited to 'Types/BranchState.hs')
-rw-r--r-- | Types/BranchState.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Types/BranchState.hs b/Types/BranchState.hs index 777edb32c..e5b2291f3 100644 --- a/Types/BranchState.hs +++ b/Types/BranchState.hs @@ -9,6 +9,7 @@ module Types.BranchState where data BranchState = BranchState { branchUpdated :: Bool, -- has the branch been updated this run? + indexChecked :: Bool, -- has the index file been checked to exist? -- the content of one file is cached cachedFile :: Maybe FilePath, @@ -16,4 +17,4 @@ data BranchState = BranchState { } startBranchState :: BranchState -startBranchState = BranchState False Nothing "" +startBranchState = BranchState False False Nothing "" |