[pve-devel] [RFC PATCH installer 1/2] ui: stdio: replace newlines with whitespaces in prompt messages
Christoph Heiss
c.heiss at proxmox.com
Fri Nov 17 14:45:26 CET 2023
The line-based protocol currently used cannot handle this properly, so
introduce this as a stop-gap measure - otherwise messages might be cut
off.
This makes it work for now, and the text is wrapped correctely for the
screen width in the TUI anyway - which is the only user of this so far.
Will be reworked properly later on.
Signed-off-by: Christoph Heiss <c.heiss at proxmox.com>
---
Proxmox/UI/StdIO.pm | 1 +
1 file changed, 1 insertion(+)
diff --git a/Proxmox/UI/StdIO.pm b/Proxmox/UI/StdIO.pm
index 0ee6311..f734c0b 100644
--- a/Proxmox/UI/StdIO.pm
+++ b/Proxmox/UI/StdIO.pm
@@ -36,6 +36,7 @@ sub finished {
sub prompt {
my ($self, $query) = @_;
+ $query =~ s/\n/ /g;
print STDOUT "prompt: $query\n";
my $response = <STDIN> // ''; # FIXME: error handling?
--
2.42.0
More information about the pve-devel
mailing list