diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-04-04 18:22:21 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-04-04 18:22:21 +0300 |
commit | 9826eef3b4fc96ce08e356236afa07e9d78ca79e (patch) | |
tree | 0ef09cda1a399e8c802963d18eae5e5ef504ab15 | |
parent | 81b0c41847462fd3b137554a011369293b19940c (diff) |
Update --options-file option description
-rw-r--r-- | bdep/common.cli | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/bdep/common.cli b/bdep/common.cli index 2db2677..d6d2273 100644 --- a/bdep/common.cli +++ b/bdep/common.cli @@ -196,21 +196,21 @@ namespace bdep string --options-file { "<file>", - "Read additional options from <file>. Each option should appearing on a - separate line optionally followed by space and an option value. Empty - lines and lines starting with \cb{#} are ignored. Option values can - be enclosed in double (\cb{\"}) or single (\cb{'}) quotes to preserve - leading and trailing whitespaces as well as to specify empty values. - If the value itself contains trailing or leading quotes, enclose it - with an extra pair of quotes, for example \cb{'\"x\"'}. Non-leading - and non-trailing quotes are interpreted as being part of the option - value. + "Read additional options from <file>. Each option should appear on a + separate line optionally followed by space or equal sign (\cb{=}) and + an option value. Empty lines and lines starting with \cb{#} are + ignored. Option values can be enclosed in double (\cb{\"}) or single + (\cb{'}) quotes to preserve leading and trailing whitespaces as well as + to specify empty values. If the value itself contains trailing or + leading quotes, enclose it with an extra pair of quotes, for example + \cb{'\"x\"'}. Non-leading and non-trailing quotes are interpreted as + being part of the option value. The semantics of providing options in a file is equivalent to providing the same set of options in the same order on the command line at the point where the \cb{--options-file} option is specified except that - the shell escaping and quoting is not required. You can repeat this - option to specify more than one options file." + the shell escaping and quoting is not required. Repeat this option + to specify more than one options file." } }; } |