Browse Source

script execution order adapted

master
Dirk Alders 2 years ago
parent
commit
89a19e4211
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      add

+ 4
- 2
add View File

2
 #
2
 #
3
 if [[ -e $1 ]]; then
3
 if [[ -e $1 ]]; then
4
   target=`basename $1`
4
   target=`basename $1`
5
-  if [[ $target == "root_prompt.sh" ]]; then
5
+  if [[ $target == "tmux_local.sh" ]]; then
6
     target="10_$target"
6
     target="10_$target"
7
-  elif [[ $target == "venv_prompt.sh" ]]; then
7
+  elif [[ $target == "root_prompt.sh" ]]; then
8
     target="20_$target"
8
     target="20_$target"
9
+  elif [[ $target == "venv_prompt.sh" ]]; then
10
+    target="30_$target"
9
   elif [[ $target == "todo.sh" ]]; then
11
   elif [[ $target == "todo.sh" ]]; then
10
     target="90_$target"
12
     target="90_$target"
11
   else
13
   else

Loading…
Cancel
Save