aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-08 11:34:51 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-12-08 11:34:51 +0300
commit710e431c2124ef735333978285f0415799ee4909 (patch)
treed4dac5f84359e1b7a5c81d682d990bb7b45d161c
parente2eb878b13233c3b65bb1cf3848be1a357e269e9 (diff)
Fix handling --options-file option in default options files
-rw-r--r--bpkg/bpkg.cxx3
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)