From 7d564d0b4d7e92cd718ad67031b5e33b94cbf4ac Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 22 May 2024 16:46:34 +0300 Subject: [PATCH] feat: if exports-secrets exists, source it --- config/exports | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/exports b/config/exports index b13cc9c..2f4f967 100755 --- a/config/exports +++ b/config/exports @@ -52,5 +52,9 @@ have_brew() fi } +if [[ -f "$DOTFILES/config/exports-secret" ]]; then + source "$DOTFILES/config/exports-secret" +fi + source "$DOTFILES/config/exports-shell" source "$DOTFILES/config/exports-apps"