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

Commit

Permalink
Merge pull request #227 from tbleher/cli-msg
Browse files Browse the repository at this point in the history
Output \n as newlines on console
  • Loading branch information
thw26 authored Apr 15, 2024
2 parents a794912 + 1136016 commit 6349c36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LogosLinuxInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ no-diag-msg() {
die;
}
cli_msg() {
printf "%s\n" "${1}"
printf "%s\n" "${1}" | sed 's/\\n/\n/g'
}
gtk_info() {
zenity --info --width=300 --height=200 --text="$*" --title='Information'
Expand Down

0 comments on commit 6349c36

Please sign in to comment.