From 3496c8524802908dab3c60e3cc721928c71adde0 Mon Sep 17 00:00:00 2001 From: Dylan Date: Sun, 27 Mar 2016 15:04:44 +1100 Subject: [PATCH] Fix stray + sign in birthday output' --- neofetch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neofetch b/neofetch index a3b76be4..44b81be0 100755 --- a/neofetch +++ b/neofetch @@ -1704,7 +1704,7 @@ getbirthday () { "FreeBSD"*) birthday="$(ls -alctT /etc/hostid | awk '{printf $6 " " $7 " " $9 " " $8}')" - date_cmd="$(date -j -f "%b %d %Y" "$birthday" +"$birthday_format")" + date_cmd="$(date -j -f "%b %d %Y" "$birthday" "$birthday_format")" ;; "NetBSD"*) @@ -1716,7 +1716,7 @@ getbirthday () { "Windows") birthday="$(ls -alct --full-time /cygdrive/c/Windows/explorer.exe | awk '{printf $8 " " $9}')" - date_cmd="$(date -d"$birthday" +"$birthday_format")" + date_cmd="$(date -d"$birthday" "$birthday_format")" ;; esac