script execution order adapted

This commit is contained in:
Dirk Alders 2022-10-10 13:53:26 +02:00
parent 1c0c86698f
commit 89a19e4211

6
add
View File

@ -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