From 6b79c5648c5147edd894a389379e28aea184aad5 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 15 May 2025 13:01:27 +0000 Subject: [PATCH] fix(bash): rollback short bashrc import (#19) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/19 --- .bash_profile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index fc1cad9..9c4f190 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,5 +1,7 @@ # Import .bashrc for to unfuck login shells -if [ -f ~/.bashrc ] && . ~/.bashrc +if [ -f ~/.bashrc ]; then + . ~/.bashrc +fi # Export GPG_TTY for signing stuff with gpg export GPG_TTY=$(tty)