From d13e3277b1a076ecf4773495b6820cc1598b2478 Mon Sep 17 00:00:00 2001 From: Bruno21 Date: Wed, 3 Aug 2022 15:39:57 +0200 Subject: [PATCH] minor bugfix --- kymsu2.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kymsu2.sh b/kymsu2.sh index 164701f..878f0b2 100755 --- a/kymsu2.sh +++ b/kymsu2.sh @@ -36,6 +36,7 @@ function showHelp() { all_plugins=false no_distract=false brew_cleanup=false +SCRIPTS_DIR=$HOME/.kymsu/plugins.d while getopts "hncs: a-:" opt do @@ -62,7 +63,6 @@ done #shift "$((OPTIND-1))" -SCRIPTS_DIR=$HOME/.kymsu/plugins.d # -n : non vide if [ -n "$one_script" ]; then @@ -100,8 +100,8 @@ echo "" for script in $list_plugins; do # le $@ permet de passer à chaque script les arguments passés à *ce* script - #$script $@ - echo "$script" + $script $@ + #echo "$script" done shift "$((OPTIND-1))"