From e1aef47271db85e075eb6c47b3a3510533514e22 Mon Sep 17 00:00:00 2001 From: BO41 Date: Thu, 12 Aug 2021 17:03:26 +0200 Subject: [PATCH] pmbootstrap: make use of consistent casing (MR 2090) --- helpers/envkernel.sh | 2 +- pmb/__init__.py | 2 +- pmb/config/init.py | 2 +- pmb/parse/arguments.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/envkernel.sh b/helpers/envkernel.sh index f2cc894e..b67d4b12 100644 --- a/helpers/envkernel.sh +++ b/helpers/envkernel.sh @@ -239,7 +239,7 @@ set_alias_make() { cmd="$cmd srcdir=/mnt/linux builddir=/mnt/linux/.output tmpdir=/tmp/envkernel" cmd="$cmd ./\"\$_script\"\";" cmd="$cmd else" - cmd="$cmd echo \"Error: \$_script not found.\";" + cmd="$cmd echo \"ERROR: \$_script not found.\";" cmd="$cmd fi;" cmd="$cmd };" cmd="$cmd _run_script \"\$@\"" diff --git a/pmb/__init__.py b/pmb/__init__.py index 447e84c3..e0c8e0fa 100644 --- a/pmb/__init__.py +++ b/pmb/__init__.py @@ -54,7 +54,7 @@ def main(): if mount.ismount(args.work + "/chroot_native/dev"): logging.info("NOTE: chroot is still active (use 'pmbootstrap" " shutdown' as necessary)") - logging.info("Done") + logging.info("DONE!") except Exception as e: # Dump log to stdout when args (and therefore logging) init failed diff --git a/pmb/config/init.py b/pmb/config/init.py index 5a2cac40..5522fc55 100644 --- a/pmb/config/init.py +++ b/pmb/config/init.py @@ -629,4 +629,4 @@ def frontend(args): " not get updated automatically.") logging.info("Run 'pmbootstrap status' once a day before working with" " pmbootstrap to make sure that everything is up-to-date.") - logging.info("Done!") + logging.info("DONE!") diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index 5738ea53..1dcb228f 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -315,7 +315,7 @@ def arguments_qemu(subparser): default=False, help="Use 'tablet' instead of 'mouse'" " input for QEMU. The tablet input device automatically" " grabs/releases the mouse when moving in/out of the QEMU" - " window. (Note: For some reason the mouse position is" + " window. (NOTE: For some reason the mouse position is" " not reported correctly with this in some cases...)") ret.add_argument("--display", dest="qemu_display",