Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit 6349c36

Browse files
authored
Merge pull request #227 from tbleher/cli-msg
Output \n as newlines on console
2 parents a794912 + 1136016 commit 6349c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LogosLinuxInstaller.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ no-diag-msg() {
173173
die;
174174
}
175175
cli_msg() {
176-
printf "%s\n" "${1}"
176+
printf "%s\n" "${1}" | sed 's/\\n/\n/g'
177177
}
178178
gtk_info() {
179179
zenity --info --width=300 --height=200 --text="$*" --title='Information'

0 commit comments

Comments
 (0)