mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-21 20:28:24 +08:00
fix: migrate all remaining eval callers to source, fix stale CHANGELOG claim
5 templates and 2 bin scripts still used eval $(gstack-slug). All now use source <(gstack-slug). Updated gstack-slug comment to match. Fixed v0.8.3 CHANGELOG entry that falsely claimed eval was fully eliminated — it was the output sanitization that made it safe, not a calling convention change. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -297,7 +297,7 @@ When the user types `/benchmark`, run this skill.
|
||||
### Phase 1: Setup
|
||||
|
||||
```bash
|
||||
eval $(~/.claude/skills/gstack/bin/gstack-slug 2>/dev/null || echo "SLUG=unknown")
|
||||
source <(~/.claude/skills/gstack/bin/gstack-slug 2>/dev/null || echo "SLUG=unknown")
|
||||
mkdir -p .gstack/benchmark-reports
|
||||
mkdir -p .gstack/benchmark-reports/baselines
|
||||
```
|
||||
|
||||
@@ -41,7 +41,7 @@ When the user types `/benchmark`, run this skill.
|
||||
### Phase 1: Setup
|
||||
|
||||
```bash
|
||||
eval $(~/.claude/skills/gstack/bin/gstack-slug 2>/dev/null || echo "SLUG=unknown")
|
||||
source <(~/.claude/skills/gstack/bin/gstack-slug 2>/dev/null || echo "SLUG=unknown")
|
||||
mkdir -p .gstack/benchmark-reports
|
||||
mkdir -p .gstack/benchmark-reports/baselines
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user