ScriptBinDir returns the directory where scripts can store executable binaries.
()
| 108 | // ScriptBinDir returns the directory where scripts can store executable |
| 109 | // binaries. |
| 110 | func (r *Runner) ScriptBinDir() string { |
| 111 | return filepath.Join(r.dataDir, "bin") |
| 112 | } |
| 113 | |
| 114 | func (r *Runner) RegisterMetrics(reg prometheus.Registerer) { |
| 115 | if reg == nil { |