Skip to content

Commit 6f6e494

Browse files
fix: correct script paths in test-estimate-context-load and test-verify-baseline-intent (16a5-bfd3, 8428-b61a) (merge worktree-20260324-091358)
2 parents 672a522 + 36c889d commit 6f6e494

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/dso/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dso",
3-
"version": "0.25.21",
3+
"version": "0.25.22",
44
"description": "Workflow infrastructure plugin for Claude Code projects",
55
"commands": "./commands/",
66
"skills": "./skills/",

tests/test-estimate-context-load.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set -euo pipefail
66

77
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
8-
SCRIPT="$SCRIPT_DIR/../scripts/estimate-context-load.sh"
8+
SCRIPT="$SCRIPT_DIR/../plugins/dso/scripts/estimate-context-load.sh"
99
FAILURES=0
1010
TESTS=0
1111

tests/test-verify-baseline-intent-portability.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
set -eu
2020

2121
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
22-
CANONICAL_SCRIPT="$SCRIPT_DIR/../scripts/verify-baseline-intent.sh"
23-
READ_CONFIG_SH="$SCRIPT_DIR/../scripts/read-config.sh"
22+
CANONICAL_SCRIPT="$SCRIPT_DIR/../plugins/dso/scripts/verify-baseline-intent.sh"
23+
READ_CONFIG_SH="$SCRIPT_DIR/../plugins/dso/scripts/read-config.sh"
2424

2525
FAILURES=0
2626
TESTS=0

0 commit comments

Comments
 (0)