From b66a25ef266e698c315ed012f49f1b9845a5a1df Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sat, 9 Aug 2025 14:54:54 +0100 Subject: [PATCH] [shell-common] Fix TZ_LIST, reorder to after homebrew --- shell-common/.config/shell-common/exports.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shell-common/.config/shell-common/exports.sh b/shell-common/.config/shell-common/exports.sh index 0903ecd..fef9810 100644 --- a/shell-common/.config/shell-common/exports.sh +++ b/shell-common/.config/shell-common/exports.sh @@ -32,14 +32,14 @@ if [ -f $HOME/.cargo/env ]; then source $HOME/.cargo/env fi -# https://github.com/oz/tz -if [ -x "$(command -v tz)" ]; then - export TZ_LIST="Europe/Dublin,Portwest HQ;America/New_York,WDW;America/Los_Angeles,DLR;Europe/Paris,DLP" -fi - # macOS Specific envs if [[ $(uname) == "Darwin" ]]; then # Homebrew export HOMEBREW_NO_ENV_HINTS=1 [ -d /opt/homebrew ] && eval "$(/opt/homebrew/bin/brew shellenv)" fi + +# https://github.com/oz/tz +if [ -x "$(command -v tz)" ]; then + export TZ_LIST="Europe/Dublin,Portwest HQ;America/New_York,WDW;America/Los_Angeles,DLR;Europe/Paris,DLP" +fi