From 06ff9ce109f7151e0ddf2dfcf9ad8f811a40d989 Mon Sep 17 00:00:00 2001
From: Steven Baltakatei Sandoval <baltakatei@gmail.com>
Date: Tue, 29 Nov 2022 07:45:45 +0000
Subject: [PATCH] fix(user/bkdatev):Unset LC_TIME so date can use
 locale-specific %c

---
 user/bkdatev | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/user/bkdatev b/user/bkdatev
index 5174fad..22ff310 100755
--- a/user/bkdatev
+++ b/user/bkdatev
@@ -2,7 +2,7 @@
 # Desc: Baltakatei's verbose date command
 # Usage: bkdatev [args]
 # Example: bkdatev --date="2001-09-11T09:02:59-04"
-# Version: 0.2.1
+# Version: 0.2.2
 # Ref/Attrib: [1] "ISO 8601". Wikipedia. https://en.wikipedia.org/wiki/ISO_8601
 #             [2] "Changing the Locale in Wine" https://stackoverflow.com/a/16428951
 #             [3] "Shanghai vs Beijing" https://bugs.launchpad.net/ubuntu/+source/libgweather/+bug/228554
@@ -44,6 +44,7 @@ print_dateline() {
     }; # print line of dates
 main() {
     n_ln=0; # for line_sep()
+    unset LC_TIME; # Fall back to time zone-specific locale settings.
     
     # format strings
     fs_iso8601="+%Y-%m-%dT%H:%M:%S%:::z"; # typical ISO-8601
-- 
2.39.5