чување 34d244e8e1f9606c85e8cb93239a52061172c68b
родитељ 7e4059223fe2c5e1f5ed5e2c11187a2890097767
Аутор: Страхиња Радић <contact@strahinja.org>
Датум: Sun, 19 May 2024 21:38:56 +0200
lib/makedate: Export LC_ALL
Diffstat:
измењених датотека: 1, додавања: 1(+), брисања: 2(-)
diff --git a/lib/makedate b/lib/makedate
@@ -2,6 +2,7 @@
# vim: set ft=bash:
FALLBACKDATE=${FALLBACKDATE:-unknown}
LC_ALL=C
+export LC_ALL
if [ -d .got ] && command -v got >/dev/null 2>&1; then
got tag -l |
@@ -12,8 +13,6 @@ if [ -d .got ] && command -v got >/dev/null 2>&1; then
exit
}' >date.new
elif [ -d .git ] && command -v git >/dev/null 2>&1; then
- LC_ALL=C
- export LC_ALL
user=$(unalias ls >/dev/null 2>&1 || true; \
command ls -ld . | awk '{print $3}')
e_user=$(id -un)