We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d809f43 commit f26758aCopy full SHA for f26758a
1 file changed
Makefile
@@ -474,6 +474,13 @@ tools:
474
else echo "Could not auto-install zizmor: https://docs.zizmor.sh/installation/" && exit 1; \
475
fi; \
476
}
477
+ @command -v bats >/dev/null 2>&1 || { \
478
+ echo "Installing bats..."; \
479
+ if command -v brew >/dev/null 2>&1; then brew install bats-core; \
480
+ elif command -v pacman >/dev/null 2>&1; then sudo pacman -S --noconfirm bats; \
481
+ else echo "Could not auto-install bats: https://github.com/bats-core/bats-core#installation" && exit 1; \
482
+ fi; \
483
+ }
484
485
486
# Run skill evals (requires ANTHROPIC_API_KEY and Ruby)
0 commit comments