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