remove useless "&& true" from OS checks
This commit is contained in:
parent
e916f6713f
commit
787930a304
1 changed files with 2 additions and 2 deletions
|
|
@ -9,8 +9,8 @@ export LANG="en_CA.UTF-8"
|
||||||
|
|
||||||
cdpath=(~)
|
cdpath=(~)
|
||||||
|
|
||||||
function linux() { [[ `uname -s` = "Linux" ]] && true }
|
function linux() { [[ `uname -s` = "Linux" ]] }
|
||||||
function mac() { [[ `uname -s` = "Darwin" ]] && true }
|
function mac() { [[ `uname -s` = "Darwin" ]] }
|
||||||
|
|
||||||
HOSTNAME=`hostname -s`
|
HOSTNAME=`hostname -s`
|
||||||
KEYCHAIN_HOST=`hostname`
|
KEYCHAIN_HOST=`hostname`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue