()
| 490 | } |
| 491 | |
| 492 | func (r *BashRuntime) IsAvailable() bool { |
| 493 | _, err := exec.LookPath(r.bashPath) |
| 494 | return err == nil |
| 495 | } |
| 496 | |
| 497 | func (r *BashRuntime) Execute(ctx context.Context, code string, input map[string]any) (*ExecutionResult, error) { |
| 498 | start := time.Now() |
no outgoing calls