loki-mode 5.8.2 → 5.8.3
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/VERSION +1 -1
- package/autonomy/run.sh +15 -2
- package/package.json +1 -1
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.8.
|
|
1
|
+
5.8.3
|
package/autonomy/run.sh
CHANGED
|
@@ -1627,8 +1627,13 @@ cleanup_parallel_streams() {
|
|
|
1627
1627
|
run_parallel_orchestrator() {
|
|
1628
1628
|
log_header "Parallel Orchestrator Started"
|
|
1629
1629
|
|
|
1630
|
-
# Initialize streams
|
|
1631
|
-
init_parallel_streams
|
|
1630
|
+
# Initialize streams - exit if bash version is too old
|
|
1631
|
+
if ! init_parallel_streams; then
|
|
1632
|
+
log_error "Failed to initialize parallel streams"
|
|
1633
|
+
log_error "Falling back to sequential mode"
|
|
1634
|
+
PARALLEL_MODE=false
|
|
1635
|
+
return 1
|
|
1636
|
+
fi
|
|
1632
1637
|
|
|
1633
1638
|
# Spawn testing session
|
|
1634
1639
|
if [ "$PARALLEL_TESTING" = "true" ] && [ -n "${WORKTREE_PATHS[testing]:-}" ]; then
|
|
@@ -4466,6 +4471,14 @@ main() {
|
|
|
4466
4471
|
|
|
4467
4472
|
# Run in appropriate mode
|
|
4468
4473
|
local result=0
|
|
4474
|
+
if [ "$PARALLEL_MODE" = "true" ]; then
|
|
4475
|
+
# Check bash version before attempting parallel mode
|
|
4476
|
+
if ! check_parallel_support; then
|
|
4477
|
+
log_warn "Parallel mode unavailable, falling back to sequential mode"
|
|
4478
|
+
PARALLEL_MODE=false
|
|
4479
|
+
fi
|
|
4480
|
+
fi
|
|
4481
|
+
|
|
4469
4482
|
if [ "$PARALLEL_MODE" = "true" ]; then
|
|
4470
4483
|
# Parallel mode: orchestrate multiple worktrees
|
|
4471
4484
|
log_header "Running in Parallel Mode"
|