]> glassweightruler.freedombox.rocks Git - xdg-ninja.git/commitdiff
Merge pull request #20 from FineFindus/main
authorb3nj5m1n <47924309+b3nj5m1n@users.noreply.github.com>
Sun, 15 May 2022 01:49:05 +0000 (03:49 +0200)
committerGitHub <noreply@github.com>
Sun, 15 May 2022 01:49:05 +0000 (03:49 +0200)
Added line break 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