aboutsummaryrefslogtreecommitdiff
path: root/.bashrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-12-22 02:43:32 -0500
committertdro <tdro@users.noreply.github.com>2020-12-23 01:27:54 -0500
commit0d5afea232d5ac174e0e9ced2f8a8802b43d55f8 (patch)
tree26b5879dc714d7299318d9ab4770d81951e5b192 /.bashrc
parent7bd85e987c52846659cfb4d4e8f3c672e17a90cb (diff)
downloaddotfiles-0d5afea232d5ac174e0e9ced2f8a8802b43d55f8.tar.gz
dotfiles-0d5afea232d5ac174e0e9ced2f8a8802b43d55f8.tar.bz2
dotfiles-0d5afea232d5ac174e0e9ced2f8a8802b43d55f8.zip
.bash_profile: Just prefix path
Avoid duplicate paths since .bashrc and .bash_profile are calling each other.
Diffstat (limited to '.bashrc')
-rw-r--r--.bashrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index 70fff04..9523b76 100644
--- a/.bashrc
+++ b/.bashrc
@@ -1,7 +1,7 @@
#!/bin/bash
# source exports
-export BASH_PROFILE=loaded && . "$HOME/.bash_profile";
+export BASH_PROFILE=1 && . "$HOME/.bash_profile";
# bail if not interactive
echo $- | grep -q "i" || return;