From 23d3c183b0f1cf6ba37144572419966472162070 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 17 Oct 2016 00:03:42 +0300 Subject: .bashrc: source files from $HOME, not cwd --- %HOME%/.bashrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '%HOME%/.bashrc') diff --git a/%HOME%/.bashrc b/%HOME%/.bashrc index e75ce20..e68f71b 100644 --- a/%HOME%/.bashrc +++ b/%HOME%/.bashrc @@ -219,8 +219,8 @@ alias tree='tree -a' [ "$( uname -o )" == 'Cygwin' ] && alias list_packages='cygcheck -cd' -[ -f '.bash_utils/cxx.sh' ] && source .bash_utils/cxx.sh -[ -f '.bash_utils/distr.sh' ] && source .bash_utils/distr.sh -[ -f '.bash_utils/file.sh' ] && source .bash_utils/file.sh -[ -f '.bash_utils/git.sh' ] && source .bash_utils/git.sh -[ -f '.bash_utils/text.sh' ] && source .bash_utils/text.sh +[ -f "$HOME/.bash_utils/cxx.sh" ] && source "$HOME/.bash_utils/cxx.sh" +[ -f "$HOME/.bash_utils/distr.sh" ] && source "$HOME/.bash_utils/distr.sh" +[ -f "$HOME/.bash_utils/file.sh" ] && source "$HOME/.bash_utils/file.sh" +[ -f "$HOME/.bash_utils/git.sh" ] && source "$HOME/.bash_utils/git.sh" +[ -f "$HOME/.bash_utils/text.sh" ] && source "$HOME/.bash_utils/text.sh" -- cgit v1.2.3