From: Daan De Meyer Date: Fri, 22 Dec 2023 09:33:52 +0000 (+0100) Subject: Make sure we mount in extra search paths X-Git-Tag: v20~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f569cc63fc3c323c4461402ac82e8d653851623;p=thirdparty%2Fmkosi.git Make sure we mount in extra search paths --- diff --git a/mkosi/bubblewrap.py b/mkosi/bubblewrap.py index 13f9517b5..28edea5bc 100644 --- a/mkosi/bubblewrap.py +++ b/mkosi/bubblewrap.py @@ -53,6 +53,8 @@ def finalize_mounts(state: MkosiState) -> list[PathString]: if d ] + mounts += [(d, d, True) for d in state.config.extra_search_paths] + return flatten( ["--ro-bind" if readonly else "--bind", src, target] for src, target, readonly