Skip to content

Commit 27b0699

Browse files
authored
Merge pull request #3 from CleoQc/master
O Silent night....
2 parents e94818a + b3edf06 commit 27b0699

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Common installation scripts used in multiple products around the Dexter Industries Galaxy of products.
33

44
# to install:
5-
curl https://raw.githubusercontent.com/DexterInd/script_tools/master/install_script_tools.sh | bash
5+
curl --silent https://raw.githubusercontent.com/DexterInd/script_tools/master/install_script_tools.sh | bash

install_script_tools.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#####################################################################
44
#
55
# to install:
6-
# curl https://raw.githubusercontent.com/DexterInd/script_tools/master/install_script_tools.sh | bash
6+
# curl --silent https://raw.githubusercontent.com/DexterInd/script_tools/master/install_script_tools.sh | bash
77
#
88
#####################################################################
99
#####################################################################
@@ -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
@@ -41,10 +41,10 @@ cd $DEXTER
4141
# if not, clone the folder
4242
if [ ! -d $SCRIPT ] ; then
4343
# clone the folder
44-
sudo git clone https://github.com/DexterInd/script_tools.git
44+
sudo git clone --quiet https://github.com/DexterInd/script_tools.git
4545
else
4646
cd $SCRIPT
47-
sudo git pull
47+
sudo git pull --quiet
4848
fi
4949

50-
popd
50+
popd > /dev/null

0 commit comments

Comments
 (0)