diff options
author | Joey Hess <joey@kitenet.net> | 2014-02-13 02:24:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-02-13 02:24:30 -0400 |
commit | 53861087d55de45ec6b24f6e452469dfa72c1644 (patch) | |
tree | 2c0274b816b8d21640d4eb4c51fabff50e1406a3 /Command | |
parent | 36f34c21f3dc8aa448f129e2a727381ca61c4c85 (diff) |
limiting files based on metadata
Note that there is currently no caching, so
--metadata foo=bar --metadata tag=blah
will currently read the log 2x per file.
Diffstat (limited to 'Command')
-rw-r--r-- | Command/MetaData.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Command/MetaData.hs b/Command/MetaData.hs index cc0364a30..5608701f1 100644 --- a/Command/MetaData.hs +++ b/Command/MetaData.hs @@ -21,7 +21,7 @@ def = [withOptions [setOption] $ command "metadata" paramPaths seek SectionUtility "sets metadata of a file"] setOption :: Option -setOption = Option ['s'] ["set"] (ReqArg mkmod "field[+-]=value") "set metadata" +setOption = Option ['s'] ["set"] (ReqArg mkmod "FIELD[+-]=VALUE") "set metadata" where mkmod p = case parseModMeta p of Left e -> error e |