Auto Update

This commit is contained in:
matt1432 2023-02-26 01:36:59 -05:00
parent 2dddc3ae8e
commit 07fdbe0495
2 changed files with 4 additions and 7 deletions

View file

@ -27,14 +27,11 @@ shopt -s autocd
export TERM=xterm-color
# Alias definitions.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ]; then
PATH="$HOME/bin:$PATH:$HOME/.local/bin"
fi
[[ -d "$HOME/bin" ]] && PATH="$PATH:$HOME/bin"
[[ -d "$HOME/.local/bin" ]] && PATH="$PATH:$HOME/.local/bin"
# source misc user scripts
if [ -d ~/git/dotfiles/source ]; then

View file

@ -6,4 +6,4 @@ if [ -d ~/git/dotfiles ] ; then
for f in ./files/.*; do if [[ -f $f ]]; then ln ./$f ../../ ; fi; done)
fi
. ~/.bashrc
[[ -f ~/.bashrc ]] && . ~/.bashrc