Date: Thu, 25 Dec 2025 20:44:49 +0000 From: Igor Ostapenko <igoro@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ecb58f931d45 - main - kyua: Fix prompt of "debug -p" command Message-ID: <694da241.3bb7a.5852e2a3@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by igoro: URL: https://cgit.FreeBSD.org/src/commit/?id=ecb58f931d45d6fe4e8b60a172415cc387657a6b commit ecb58f931d45d6fe4e8b60a172415cc387657a6b Author: Igor Ostapenko <igoro@FreeBSD.org> AuthorDate: 2025-12-25 20:41:22 +0000 Commit: Igor Ostapenko <igoro@FreeBSD.org> CommitDate: 2025-12-25 20:41:22 +0000 kyua: Fix prompt of "debug -p" command --- contrib/kyua/cli/cmd_debug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/kyua/cli/cmd_debug.cpp b/contrib/kyua/cli/cmd_debug.cpp index c00920c1a3f7..700c4b3ea851 100644 --- a/contrib/kyua/cli/cmd_debug.cpp +++ b/contrib/kyua/cli/cmd_debug.cpp @@ -91,14 +91,14 @@ public: _ui->out("The test failed and paused right before its cleanup " "routine."); _ui->out(F("Test work dir: %s") % eh.work_directory().str()); - _ui->out("Press any key to continue..."); + _ui->out("Press <Enter> to continue..."); (void) std::cin.get(); } } else if (_cmdline.has_option(pause_before_cleanup_option .long_name())) { _ui->out("The test paused right before its cleanup routine."); _ui->out(F("Test work dir: %s") % eh.work_directory().str()); - _ui->out("Press any key to continue..."); + _ui->out("Press <Enter> to continue..."); (void) std::cin.get(); } };home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?694da241.3bb7a.5852e2a3>
