Auto Update
This commit is contained in:
parent
2dddc3ae8e
commit
07fdbe0495
2 changed files with 4 additions and 7 deletions
|
@ -27,14 +27,11 @@ shopt -s autocd
|
||||||
export TERM=xterm-color
|
export TERM=xterm-color
|
||||||
|
|
||||||
# Alias definitions.
|
# Alias definitions.
|
||||||
if [ -f ~/.bash_aliases ]; then
|
[[ -f ~/.bash_aliases ]] && . ~/.bash_aliases
|
||||||
. ~/.bash_aliases
|
|
||||||
fi
|
|
||||||
|
|
||||||
# set PATH so it includes user's private bin if it exists
|
# set PATH so it includes user's private bin if it exists
|
||||||
if [ -d "$HOME/bin" ]; then
|
[[ -d "$HOME/bin" ]] && PATH="$PATH:$HOME/bin"
|
||||||
PATH="$HOME/bin:$PATH:$HOME/.local/bin"
|
[[ -d "$HOME/.local/bin" ]] && PATH="$PATH:$HOME/.local/bin"
|
||||||
fi
|
|
||||||
|
|
||||||
# source misc user scripts
|
# source misc user scripts
|
||||||
if [ -d ~/git/dotfiles/source ]; then
|
if [ -d ~/git/dotfiles/source ]; then
|
||||||
|
|
|
@ -6,4 +6,4 @@ if [ -d ~/git/dotfiles ] ; then
|
||||||
for f in ./files/.*; do if [[ -f $f ]]; then ln ./$f ../../ ; fi; done)
|
for f in ./files/.*; do if [[ -f $f ]]; then ln ./$f ../../ ; fi; done)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
. ~/.bashrc
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||||||
|
|
Loading…
Reference in a new issue