fix last error

This commit is contained in:
Christopher Homberger
2026-02-23 14:09:30 +01:00
parent 1670945af3
commit b53c54f73d

View File

@@ -4,13 +4,13 @@ package runner
import ( import (
"context" "context"
"fmt" "errors"
"gitea.com/gitea/act_runner/pkg/common" "gitea.com/gitea/act_runner/pkg/common"
) )
func (rc *RunContext) startTartEnvironment() common.Executor { func (rc *RunContext) startTartEnvironment() common.Executor {
return func(_ context.Context) error { return func(_ context.Context) error {
return fmt.Errorf("you need macOS for tart") return errors.New("you need macOS for tart")
} }
} }