Skip to content
This repository was archived by the owner on Apr 19, 2026. It is now read-only.

Commit f153c7e

Browse files
authored
feat: brain-26-1775284725 (#123)
1 parent 7f52cba commit f153c7e

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

scripts/run-qa-agent.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33
cd "$(dirname "$0")/.."
4+
5+
if [[ ! -f ./shellforge ]]; then
6+
echo "[run-qa-agent] Building shellforge..."
7+
go build -o shellforge ./cmd/shellforge
8+
fi
9+
410
exec ./shellforge qa "${1:-.}"

scripts/run-report-agent.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/usr/bin/env bash
22
set -euo pipefail
33
cd "$(dirname "$0")/.."
4+
5+
if [[ ! -f ./shellforge ]]; then
6+
echo "[run-report-agent] Building shellforge..."
7+
go build -o shellforge ./cmd/shellforge
8+
fi
9+
410
exec ./shellforge report "${1:-.}"

0 commit comments

Comments
 (0)