UpdateDir returns the extension-specific directory where updates are stored.
(name string)
| 596 | |
| 597 | // UpdateDir returns the extension-specific directory where updates are stored. |
| 598 | func (m *Manager) UpdateDir(name string) string { |
| 599 | return filepath.Join(m.updateDir(), normalizeExtension(name)) |
| 600 | } |
| 601 | |
| 602 | //go:embed ext_tmpls/goBinMain.go.txt |
| 603 | var mainGoTmpl string |
no test coverage detected