commit: c1a1ef64e795ff48e3850abf6fa28edb0bb9c0c8
parent 813ec9498ab4ab0574eb4e458dd09670e73a7ce0
Author: fosslinux <fosslinux@aussies.space>
Date: Thu, 28 Dec 2023 22:26:36 +0000
Merge pull request #378 from Googulator/message-fix
Fix "Bootstrapping" message being printed too late in bwrap runs
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rootfs.py b/rootfs.py
@@ -168,7 +168,7 @@ def main():
def bootstrap(args, generator, target, size):
"""Kick off bootstrap process."""
- print(f"Bootstrapping {args.arch}")
+ print(f"Bootstrapping {args.arch}", flush=True)
if args.chroot:
find_chroot = """
import shutil