Legg til fase 16 (lydmixer) i task-runner avhengigheter
This commit is contained in:
parent
b4c4bb8a0f
commit
1cb0d43f21
1 changed files with 3 additions and 2 deletions
|
|
@ -29,17 +29,18 @@ declare -A PHASE_DEPS=(
|
|||
[9]="3"
|
||||
[10]="2"
|
||||
[11]="5 6 7"
|
||||
[12]="1 2 3 4 5 6 7 8 9 10 11 13 14 15"
|
||||
[12]="1 2 3 4 5 6 7 8 9 10 11 13 14 15 16"
|
||||
[13]="3 4"
|
||||
[14]="6 13"
|
||||
[15]="3 10"
|
||||
[16]="11 13"
|
||||
)
|
||||
|
||||
# --- Finn blokkerte faser ---
|
||||
# En fase er blokkert hvis den har en [?], [!] eller [~] oppgave
|
||||
blocked_phases() {
|
||||
local phases=""
|
||||
for phase in $(seq 1 15); do
|
||||
for phase in $(seq 1 16); do
|
||||
if grep -qP "^\- \[(\?|!|~)\] ${phase}\." "$TASKS" 2>/dev/null; then
|
||||
phases="$phases $phase"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue