summaryrefslogtreecommitdiff
path: root/scripts/coverage.sh
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-07 11:36:38 +0300
committerPaul Buetow <paul@buetow.org>2025-09-07 11:36:38 +0300
commitfb06bfa9dc7140f987bdbad59467a84610221fbb (patch)
treeb8ebf92c121a32eed0dc5e193c5877c5d0b94e6b /scripts/coverage.sh
parent0d424adfc64da1c61296c66a99162ec68cc4f8d0 (diff)
refactor: move hexai-action to cmd/hexai-action; extract orchestration into internal/hexaiaction; move tests; update Magefile and docs
Diffstat (limited to 'scripts/coverage.sh')
-rwxr-xr-xscripts/coverage.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/coverage.sh b/scripts/coverage.sh
index 1492f0f..c57c838 100755
--- a/scripts/coverage.sh
+++ b/scripts/coverage.sh
@@ -8,7 +8,7 @@ pkgs=("$@")
if [ ${#pkgs[@]} -eq 0 ]; then
pkgs=(
"codeberg.org/snonux/hexai/internal/tmux"
- "codeberg.org/snonux/hexai/cmd/internal/hexai-action"
+ "codeberg.org/snonux/hexai/internal/hexaiaction"
)
fi
@@ -28,4 +28,3 @@ done
echo
echo "Hint: combine coverage across all packages with:"
echo " go test ./... -coverprofile=cover.out && go tool cover -func=cover.out"
-