Skip to content

Commit fbd8655

Browse files
Version increase
1 parent eb5ba07 commit fbd8655

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.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.2.1",
3+
"version": "0.2.2",
44
"description": "Workflow infrastructure plugin for Claude Code projects",
55
"commands": "./commands/",
66
"skills": "./skills/",

scripts/ensure-pre-commit.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
_ensure_precommit_repo_root=$(git rev-parse --show-toplevel 2>/dev/null || echo "")
2323
if [[ -z "$_ensure_precommit_repo_root" ]]; then
2424
echo "WARNING: Not in a git repository — skipping pre-commit check" >&2
25+
# shellcheck disable=SC2317
2526
return 0 2>/dev/null || exit 0
2627
fi
2728

scripts/validate-issues.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ check_stale_blockers() {
435435
stale_count=1
436436
fi
437437

438-
echo $stale_count
438+
echo "$stale_count"
439439
}
440440

441441
# Check for child->parent dependencies (anti-pattern)
@@ -898,7 +898,7 @@ main() {
898898
score=$(calculate_score)
899899

900900
if $JSON_OUTPUT; then
901-
output_json $score
901+
output_json "$score"
902902
elif $TERSE_MODE; then
903903
# Terse mode: single line on clean, multi-line only when issues exist
904904
local critical=${#CRITICAL_ISSUES[@]}

0 commit comments

Comments
 (0)