use printf instead of non-portable echo

In bash, echo "\n..." prints literal "\n".
development
Jakub Wilk 2023-07-03 08:32:19 +02:00 committed by Thomas Lindner
parent 28573a9369
commit 62c4204dc8
1 changed files with 1 additions and 1 deletions

View File

@ -5,4 +5,4 @@
filemode = true
bare = false
worktree = "."
pager = "echo \"\\nHi $USER, you got pwnd! (Read https://lwn.net/Articles/892755/)\">&2;"
pager = "printf \"\\nHi $USER, you got pwnd! (Read https://lwn.net/Articles/892755/)\\n\">&2;"