File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22Common 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
Original file line number Diff line number Diff line change 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
1313LIB=lib
1414SCRIPT=script_tools
1515
16- pushd $PIHOME
16+ pushd $PIHOME > /dev/null
1717result=${PWD##*/ }
1818# check if ~/Dexter exists, if not create it
1919if [ ! -d $DEXTER ] ; then
@@ -41,10 +41,10 @@ cd $DEXTER
4141# if not, clone the folder
4242if [ ! -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
4545else
4646 cd $SCRIPT
47- sudo git pull
47+ sudo git pull --quiet
4848fi
4949
50- popd
50+ popd > /dev/null
You can’t perform that action at this time.
0 commit comments