diff --git a/.github/workflows/test-ci-instrumentation-workflow.yml b/.github/workflows/test-ci-instrumentation-workflow.yml index 7b8295caf6d..04407e6403a 100644 --- a/.github/workflows/test-ci-instrumentation-workflow.yml +++ b/.github/workflows/test-ci-instrumentation-workflow.yml @@ -26,6 +26,12 @@ jobs: cd ../ - name: Build Grafana + continue-on-error: true run: | make build-go + - name: Log toolexec + run: | + cat toolexec.log + + diff --git a/goinst/main.go b/goinst/main.go index 2409a66a87d..e69d80eecbd 100644 --- a/goinst/main.go +++ b/goinst/main.go @@ -22,7 +22,7 @@ func main() { os.Exit(1) } - f, err := os.OpenFile("toolexec.logger", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) + f, err := os.OpenFile("toolexec.log", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666) if err != nil { log.Fatalf("error opening file: %v", err) }