diff options
author | 2015-02-06 17:08:14 -0400 | |
---|---|---|
committer | 2015-02-06 17:16:41 -0400 | |
commit | 0cb5a870007c8299f8788962bd7dfc0848794dc0 (patch) | |
tree | 43d9d70f436a42f055617df6abdf85972045476b /Command/Fix.hs | |
parent | 7d9431ef1b0cff4eece3cd8fc03e429e391d724a (diff) |
The file matching options are now only accepted by commands that can actually use them.
Diffstat (limited to 'Command/Fix.hs')
-rw-r--r-- | Command/Fix.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Command/Fix.hs b/Command/Fix.hs index c981d23ae..c4e5e52ee 100644 --- a/Command/Fix.hs +++ b/Command/Fix.hs @@ -19,8 +19,9 @@ import Utility.Touch #endif cmd :: [Command] -cmd = [notDirect $ noCommit $ command "fix" paramPaths seek - SectionMaintenance "fix up symlinks to point to annexed content"] +cmd = [notDirect $ noCommit $ withOptions annexedMatchingOptions $ + command "fix" paramPaths seek + SectionMaintenance "fix up symlinks to point to annexed content"] seek :: CommandSeek seek = withFilesInGit $ whenAnnexed start |