]> glassweightruler.freedombox.rocks Git - xdg-ninja.git/commitdiff
Added line break to glow not found
authorJonathan <63370021+FineFindus@users.noreply.github.com>
Sat, 14 May 2022 16:54:47 +0000 (18:54 +0200)
committerGitHub <noreply@github.com>
Sat, 14 May 2022 16:54:47 +0000 (18:54 +0200)
Added line breaks to the message, for when glow is not installed.

xdg-ninja.sh

index aa751bd307c4bc063308e2ef61aaefe5f0950e36..e16bd7120cafd042a0522d8ea4983458f702fdd2 100755 (executable)
@@ -3,9 +3,9 @@
 
 USE_GLOW=true
 if ! command -v glow >/dev/null 2>/dev/null; then
-    printf "Glow not found, markdown rendering not available."
-    printf "Output will be raw markdown and might look weird."
-    printf "Install glow for easier reading & copy-paste."
+    printf "Glow not found, markdown rendering not available.\n"
+    printf "Output will be raw markdown and might look weird.\n"
+    printf "Install glow for easier reading & copy-paste.\n"
     USE_GLOW=false
 fi