From 89a19e421106f8cf68f184aa939cfafa3040aee4 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Mon, 10 Oct 2022 13:53:26 +0200 Subject: [PATCH] script execution order adapted --- add | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/add b/add index d88b41c..84dfe74 100755 --- a/add +++ b/add @@ -2,10 +2,12 @@ # if [[ -e $1 ]]; then target=`basename $1` - if [[ $target == "root_prompt.sh" ]]; then + if [[ $target == "tmux_local.sh" ]]; then target="10_$target" - elif [[ $target == "venv_prompt.sh" ]]; then + elif [[ $target == "root_prompt.sh" ]]; then target="20_$target" + elif [[ $target == "venv_prompt.sh" ]]; then + target="30_$target" elif [[ $target == "todo.sh" ]]; then target="90_$target" else