From b628453b10201848c01fa8cfae305612094cad7a Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Tue, 18 Oct 2022 14:43:33 -0700 Subject: [PATCH] Rename .env to .shenv. Requires updating symlinks. Fixes #13. --- dotfiles/bashrc | 2 +- dotfiles/profile | 2 +- dotfiles/{env => shenv} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename dotfiles/{env => shenv} (100%) diff --git a/dotfiles/bashrc b/dotfiles/bashrc index b7483d7..a08bc5b 100755 --- a/dotfiles/bashrc +++ b/dotfiles/bashrc @@ -1,5 +1,5 @@ # Load env first -if [ -f $HOME/.env ] ; then source $HOME/.env ; fi +if [ -f $HOME/.shenv ] ; then source $HOME/.shenv ; fi # History settings HISTCONTROL=ignoredups:ignorespace diff --git a/dotfiles/profile b/dotfiles/profile index ec983de..b829cb7 100755 --- a/dotfiles/profile +++ b/dotfiles/profile @@ -4,7 +4,7 @@ # Should only use POSIX constructs. # Always load ENV -test -f "$HOME/.env" && . "$HOME/.env" +test -f "$HOME/.shenv" && . "$HOME/.shenv" # Setup GREP_COLORS export GREP_COLOR='01;31' diff --git a/dotfiles/env b/dotfiles/shenv similarity index 100% rename from dotfiles/env rename to dotfiles/shenv