squad-bmad 1.2.4 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -30,6 +30,11 @@ else
|
|
|
30
30
|
fi
|
|
31
31
|
fi
|
|
32
32
|
|
|
33
|
+
# ── Sanitise folder name for tmux ───────────────────────────────────────────
|
|
34
|
+
# tmux uses '.' as a separator (session.window.pane), so dots in session names
|
|
35
|
+
# cause parsing errors. Replace dots with underscores.
|
|
36
|
+
FOLDER="${FOLDER//./_}"
|
|
37
|
+
|
|
33
38
|
# ── Derive session names ─────────────────────────────────────────────────────
|
|
34
39
|
SESSION_GEMINI="gemini-orchestrator-${FOLDER}"
|
|
35
40
|
SESSION_IMPLEMENT="claude-implement-${FOLDER}"
|
|
@@ -29,6 +29,11 @@ else
|
|
|
29
29
|
fi
|
|
30
30
|
fi
|
|
31
31
|
|
|
32
|
+
# ── Sanitise folder name for tmux ───────────────────────────────────────────
|
|
33
|
+
# tmux uses '.' as a separator (session.window.pane), so dots in session names
|
|
34
|
+
# cause parsing errors. Replace dots with underscores.
|
|
35
|
+
FOLDER="${FOLDER//./_}"
|
|
36
|
+
|
|
32
37
|
# ── Derive session names ─────────────────────────────────────────────────────
|
|
33
38
|
SESSION_GEMINI="gemini-orchestrator-${FOLDER}"
|
|
34
39
|
SESSION_IMPLEMENT="claude-implement-${FOLDER}"
|