scripts

My personal collection of scripts
git clone git://src.gearsix.net/scripts
Log | Files | Refs | Atom | README | LICENSE

commit 52afa333551751a08a7b2b2d06b55e5f096aeecc
parent 1d6e16a79ad65781025b9b582c353477a51d8e5e
Author: GeaRSiX <gearsix@tuta.io>
Date:   Fri, 28 Aug 2020 12:50:18 +0100

updated some prints in the install script

Diffstat:
Minstall | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/install b/install @@ -67,7 +67,7 @@ install_yn () { if [[ $all -eq 0 || $depr -eq 1 ]]; then if [[ -e $dest && $reinstall -eq 1 ]]; then yn="y" - echo "reinstalling..." + printf "\treinstalling...\n" else read yn fi @@ -78,9 +78,10 @@ install_yn () { if [[ $yn == "y" || $yn == "Y" || $yn == "yes" ]]; then install $src $dest + printf "\tinstalled $dest\n" ask=1 elif [[ $yn == "n" || $yn == "N" || $yn == "no" ]]; then - echo "skipping..." + echo "\tskipping...\n" ask=1 elif [[ $yn == "i" || $yn == "I" || $yn == "info" ]]; then grep -i "description\|dependencies\|arguments\|depreciated" $script