Missed these two when converting from a global option.
Sponsored-by: Dartmouth College's Datalad project
import qualified System.FilePath.ByteString as P
cmd :: Command
-cmd = notBareRepo $ withAnnexOptions [jobsOption, jsonOptions, jsonProgressOption] $
+cmd = notBareRepo $ withAnnexOptions
+ [ jobsOption
+ , jsonOptions
+ , jsonProgressOption
+ , backendOption
+ ] $
command "addurl" SectionCommon "add urls to annex"
(paramRepeating paramUrl) (seek <$$> optParser)
import Logs
cmd :: Command
-cmd = notBareRepo $
+cmd = notBareRepo $ withAnnexOptions [backendOption] $
command "importfeed" SectionCommon "import files from podcast feeds"
(paramRepeating paramUrl) (seek <$$> optParser)
[[!meta author=yoh]]
[[!tag projects/datalad]]
+
+> [[fixed|done]] --[[Joey]]
Messages that would normally be output to standard error are included in
the json instead.
+* `--backend`
+
+ Specifies which key-value backend to use.
+
* Also the [[git-annex-common-options]](1) can be used.
# CAVEATS
url to a file that would be ignored. This makes such files be added
despite any ignores.
+* `--backend`
+
+ Specifies which key-value backend to use.
+
* Also the [[git-annex-common-options]](1) can be used.
# SEE ALSO