commit c56ea5b6a65a59b883a41f1c5b32a58f32975b45 parent d123b3479bc44d2b89d14bfa3cd1916aa4e2507c Author: Pollux <pollux@pollux.codes> Date: Wed, 29 Oct 2025 15:03:14 +0000 Make update-date.sh use UTC Signed-off-by: Pollux <pollux@pollux.codes> Diffstat:
| M | update-date.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/update-date.sh b/update-date.sh @@ -2,6 +2,6 @@ cp "$1" "$1~" -cat "$1~" | sed "s/^date = .*/date = $(date -Iseconds)/" > $1 +cat "$1~" | sed "s/^date = .*/date = $(TZ=utc date -Iseconds)/" > $1 rm "$1~"