From: Daan De Meyer Date: Sun, 18 Feb 2024 14:04:36 +0000 (+0100) Subject: Start bash in the debug shell X-Git-Tag: v21~46^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=40d5108ac97dbce27cbd5f571daf8ce6d258c404;p=thirdparty%2Fmkosi.git Start bash in the debug shell Otherwise on Debian dash is started which is useless as an interactive debug shell. --- diff --git a/mkosi/run.py b/mkosi/run.py index 4960de4c3..f5a9e0b4e 100644 --- a/mkosi/run.py +++ b/mkosi/run.py @@ -210,7 +210,7 @@ def run( log_process_failure(cmdline, e.returncode) if ARG_DEBUG_SHELL.get(): subprocess.run( - [*sandbox, "sh"], + [*sandbox, "bash"], check=False, stdin=sys.stdin, text=True,