From a4b8a8c38ab0b397f24e77adada65e18c4c85dc9 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Fri, 31 Jul 2026 04:38:02 +0545 Subject: [PATCH] timezone: unset TZ at top --- .profile.d/timezone.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.profile.d/timezone.sh b/.profile.d/timezone.sh index cbe7e73..9d2ee4c 100644 --- a/.profile.d/timezone.sh +++ b/.profile.d/timezone.sh @@ -1,9 +1,11 @@ +unset TZ + #export TZ=Asia/Kathmandu #export TZ=Asia/Bangkok #export TZ=Asia/Taipei #export TZ=Asia/Tokyo #export TZ=America/Los_Angeles -unset TZ + if [[ $- == *i* && -n ${TZ} ]] ; then echo "Timezone now set to $TZ" fi -- 2.47.3