Convert generate cmd func to const

pull/373/head
Gustavo Andrioli 2 years ago
parent 68f5566fd0
commit 68ee15d24d

@ -19,6 +19,10 @@ import (
"github.com/jesseduffield/lazydocker/pkg/i18n"
)
const (
generateCheatsheetCmd = "go run scripts/generate_cheatsheet.go"
)
type bindingSection struct {
title string
bindings []*gui.Binding
@ -43,7 +47,7 @@ func main() {
content = fmt.Sprintf(
"_This file is auto-generated. To update, make the changes in the "+
"pkg/i18n directory and then run `%s` from the project root._\n\n%s",
commandToRun(),
generateCheatsheetCmd,
content,
)
writeString(file, content)
@ -140,7 +144,3 @@ func formatSections(mApp *app.App, bindingSections []*bindingSection) string {
return content
}
func commandToRun() string {
return "go run scripts/generate_cheatsheet.go"
}

Loading…
Cancel
Save