Remove useless stderr
This commit is contained in:
parent
9e722a145b
commit
5d8f841811
1 changed files with 4 additions and 3 deletions
7
zshrc
7
zshrc
|
@ -18,7 +18,7 @@ RC_PATH=$(dirname "$(readlink -f ${(%):-%x})")
|
||||||
|
|
||||||
# Mise à jour automatique à partir du repo distant
|
# Mise à jour automatique à partir du repo distant
|
||||||
|
|
||||||
pushd > /dev/null
|
pushd > /dev/null 2>&1
|
||||||
cd $RC_PATH
|
cd $RC_PATH
|
||||||
|
|
||||||
# In case the network is down, don't lock the terminal
|
# In case the network is down, don't lock the terminal
|
||||||
|
@ -37,12 +37,13 @@ elif $(echo "$git_st" | grep '^## .*behind' &> /dev/null); then
|
||||||
echo "Type Y to update .zshrc: \c"
|
echo "Type Y to update .zshrc: \c"
|
||||||
read line
|
read line
|
||||||
if [ "$line" = Y ] || [ "$line" = y ]; then
|
if [ "$line" = Y ] || [ "$line" = y ]; then
|
||||||
git pull --rebase --stat origin master && source $HOME/.zshrc && popd > /dev/null
|
git pull --rebase --stat origin master && source $HOME/.zshrc
|
||||||
|
popd > /dev/null 2>&1
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
popd > /dev/null
|
popd > /dev/null 2>&1
|
||||||
|
|
||||||
|
|
||||||
# Configuration for virtualenv
|
# Configuration for virtualenv
|
||||||
|
|
Loading…
Reference in a new issue