diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-08 11:34:51 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-08 11:34:51 +0300 |
commit | 710e431c2124ef735333978285f0415799ee4909 (patch) | |
tree | d4dac5f84359e1b7a5c81d682d990bb7b45d161c | |
parent | e2eb878b13233c3b65bb1cf3848be1a357e269e9 (diff) |
Fix handling --options-file option in default options files
-rw-r--r-- | bpkg/bpkg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bpkg/bpkg.cxx b/bpkg/bpkg.cxx index 7c1847d..f1ee302 100644 --- a/bpkg/bpkg.cxx +++ b/bpkg/bpkg.cxx @@ -264,7 +264,8 @@ init (const common_options& co, else trace << "loading " << (r ? "remote " : "local ") << f; } - }), + }, + "--options-file"), o); } catch (const pair<path, system_error>& e) |