diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-05-23 10:29:37 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2022-06-09 12:32:36 +0200 |
commit | badd533d9f76024e687a0dc7f24df2bd7a893a8c (patch) | |
tree | 7843f15a7a4e8e0b7abe111b925e9548413653cf | |
parent | 43c4da3e90ddb6c5c149588a08c777a268456325 (diff) |
Rework package skeleton loading code in preparation for defaults extraction
-rw-r--r-- | bpkg/package-skeleton.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/package-skeleton.cxx b/bpkg/package-skeleton.cxx index a452d4a..c81700e 100644 --- a/bpkg/package-skeleton.cxx +++ b/bpkg/package-skeleton.cxx @@ -1171,8 +1171,8 @@ namespace bpkg // assert (skl.out_root_.empty ()); - auto i (tmp_dirs.find (skl.db_->config_orig)); - assert (i != tmp_dirs.end ()); + auto i (temp_dir.find (skl.db_->config_orig)); + assert (i != temp_dir.end ()); // Make sure the source and out root directories, if set, are absolute // and normalized. |