commit
01f0e3798c
|
|
@ -2,7 +2,14 @@
|
||||||
# Initialize Bash It
|
# Initialize Bash It
|
||||||
|
|
||||||
# Reload Library
|
# Reload Library
|
||||||
alias reload='source ~/.bash_profile'
|
case $OSTYPE in
|
||||||
|
darwin*)
|
||||||
|
alias reload='source ~/.bash_profile'
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
alias reload='source ~/.bashrc'
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Only set $BASH_IT if it's not already set
|
# Only set $BASH_IT if it's not already set
|
||||||
if [ -z "$BASH_IT" ];
|
if [ -z "$BASH_IT" ];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue