mirror of
https://github.com/smxi/inxi.git
synced 2024-11-16 16:21:39 +00:00
bug fix, didn't strip out ^ properly
This commit is contained in:
parent
a2f1b02e53
commit
6dfa2422ce
4
inxi
4
inxi
|
@ -2714,7 +2714,7 @@ print_lines_basic()
|
|||
line_starter="$line_x_starter"
|
||||
fi
|
||||
# clean up forced connections, ie, stuff we don't want wrapping
|
||||
print_string=${print_string//^/}
|
||||
print_string=${print_string//\^/ }
|
||||
print_screen_output "$line_starter$print_string"
|
||||
print_string="$word$spacer" # needed to handle second word on new line
|
||||
temp_string=''
|
||||
|
@ -2733,7 +2733,7 @@ print_lines_basic()
|
|||
else
|
||||
line_starter="$line_x_starter"
|
||||
fi
|
||||
print_string=${print_string//^/}
|
||||
print_string=${print_string//\^/ }
|
||||
print_screen_output "$line_starter$print_string"
|
||||
fi
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue