summaryrefslogtreecommitdiff
path: root/Commands.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Commands.hs')
-rw-r--r--Commands.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Commands.hs b/Commands.hs
index dfb3eef43..258490996 100644
--- a/Commands.hs
+++ b/Commands.hs
@@ -57,7 +57,7 @@ findWanted FilesNotInGit params repo = do
return $ filter notstate $ foldl (++) [] files
where
-- never include files in the state directory
- notstate f = f /= take (length stateLoc) f
+ notstate f = stateLoc /= take (length stateLoc) f
findWanted FilesInGit params repo = do
files <- mapM (Git.inRepo repo) params
return $ foldl (++) [] files