aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Ostapenko <igoro@FreeBSD.org>2025-12-25 20:41:22 +0000
committerIgor Ostapenko <igoro@FreeBSD.org>2025-12-25 20:41:22 +0000
commitecb58f931d45d6fe4e8b60a172415cc387657a6b (patch)
tree8a1c527499201810250938d5cd9ceb4e22317931
parent98c3d868fb5a7da7356c58e8c51423975bbd078b (diff)
kyua: Fix prompt of "debug -p" command
-rw-r--r--contrib/kyua/cli/cmd_debug.cpp4
1 files 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();
}
};