Skip to content

Commit af98ddf

Browse files
committed
even pushd and popd can be quiet
1 parent 5a35b50 commit af98ddf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

install_script_tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DEXTER=Dexter
1313
LIB=lib
1414
SCRIPT=script_tools
1515

16-
pushd $PIHOME
16+
pushd $PIHOME > /dev/null
1717
result=${PWD##*/}
1818
# check if ~/Dexter exists, if not create it
1919
if [ ! -d $DEXTER ] ; then
@@ -47,4 +47,4 @@ else
4747
sudo git pull --quiet
4848
fi
4949

50-
popd
50+
popd > /dev/null

0 commit comments

Comments
 (0)