From 1e1419a4a63898e077ba3cf0764c1c45ab582455 Mon Sep 17 00:00:00 2001 From: not-matthias Date: Mon, 1 Sep 2025 15:02:30 +0200 Subject: [PATCH] refactor: change go-runner binary name --- src/run/runner/helpers/introspected_golang/go.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/run/runner/helpers/introspected_golang/go.sh b/src/run/runner/helpers/introspected_golang/go.sh index d8a655f6..770ec1eb 100755 --- a/src/run/runner/helpers/introspected_golang/go.sh +++ b/src/run/runner/helpers/introspected_golang/go.sh @@ -37,10 +37,10 @@ if [ "$1" = "test" ]; then debug_log "Detected 'test' command, routing to go-runner" # Find go-runner or install if not found - GO_RUNNER=$(which go-runner 2>/dev/null || true) + GO_RUNNER=$(which codspeed-go-runner 2>/dev/null || true) if [ -z "$GO_RUNNER" ]; then curl -fsSL http://github.com/CodSpeedHQ/runner/releases/latest/download/go-runner-installer.sh | bash -s -- --quiet - GO_RUNNER=$(which go-runner 2>/dev/null || true) + GO_RUNNER=$(which codspeed-go-runner 2>/dev/null || true) fi debug_log "Using go-runner at: $GO_RUNNER"