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