mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
Don't bother checking for go apps if Go isn't ready
This commit is contained in:
12
bash/.bashrc
12
bash/.bashrc
@@ -5,9 +5,10 @@ if [ -f /etc/bashrc ]; then
|
||||
. /etc/bashrc
|
||||
fi
|
||||
|
||||
# User specific environment
|
||||
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
||||
export PATH
|
||||
# Source exports, if it exists
|
||||
if [ -f $HOME/.bash/exports.bash ]; then
|
||||
source $HOME/.bash/exports.bash
|
||||
fi
|
||||
|
||||
# Source functions, if it exists
|
||||
if [ -f $HOME/.bash/functions.bash ]; then
|
||||
@@ -19,11 +20,6 @@ if [ -f $HOME/.bash/aliases.bash ]; then
|
||||
source $HOME/.bash/aliases.bash
|
||||
fi
|
||||
|
||||
# Source exports, if it exists
|
||||
if [ -f $HOME/.bash/exports.bash ]; then
|
||||
source $HOME/.bash/exports.bash
|
||||
fi
|
||||
|
||||
# Source completions, if it exists
|
||||
if [ -f $HOME/.bash/exports.bash ]; then
|
||||
source $HOME/.bash/completions.bash
|
||||
|
||||
Reference in New Issue
Block a user