logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 66b1ba21a64091308971034a09a9f3ef28635482
parent 7f3e07d1662f813f39195523a0f1f934123c927d
Author: Dor Askayo <dor.askayo@gmail.com>
Date:   Wed,  7 Sep 2022 23:37:00 +0300

Create tmpdir before bootstrap

Diffstat:

Mrootfs.py3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/rootfs.py b/rootfs.py @@ -129,6 +129,9 @@ def main(): tmpdir=args.tmpdir, external_sources=args.external_sources, sysb_dir=system_b.sys_dir, sysc_dir=system_c.sys_dir) + if args.tmpdir is not None: + os.makedirs(args.tmpdir, exist_ok=True) + bootstrap(args, system_a, system_b, system_c) def bootstrap(args, system_a, system_b, system_c):