@seanyao/roll 2026.424.1 → 2026.424.2

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.
Files changed (2) hide show
  1. package/bin/roll +2 -2
  2. package/package.json +1 -1
package/bin/roll CHANGED
@@ -4,7 +4,7 @@ set -euo pipefail
4
4
  # Roll — AI Agent Convention Manager
5
5
  # Single source of truth for how all AI coding agents behave.
6
6
 
7
- VERSION="2026.424.1"
7
+ VERSION="2026.424.2"
8
8
  ROLL_HOME="${ROLL_HOME:-${HOME}/.roll}"
9
9
  ROLL_CONFIG="${ROLL_HOME}/config.yaml"
10
10
  ROLL_GLOBAL="${ROLL_HOME}/conventions/global"
@@ -351,7 +351,7 @@ _sync_convention_for_tool() {
351
351
  local main_dst="$2" # target: ~/.claude/CLAUDE.md
352
352
  local force="$3"
353
353
 
354
- [[ -f "$src" ]] || return
354
+ [[ -f "$src" ]] || return 0
355
355
  local dst_dir
356
356
  dst_dir="$(dirname "$main_dst")"
357
357
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seanyao/roll",
3
- "version": "2026.424.1",
3
+ "version": "2026.424.2",
4
4
  "description": "Roll — Roll out features with AI agents",
5
5
  "scripts": {
6
6
  "test": "find tests/unit tests/integration -name '*.bats' | sort | xargs ./tests/helpers/bats-core/bin/bats"