use relative path when creating docs

pull/171/head v0.7.4
Jesse Duffield 5 years ago
parent 956b2734f4
commit c8adaa920a

@ -34,7 +34,7 @@ func main() {
for lang := range i18n.GetTranslationSets() {
os.Setenv("LC_ALL", lang)
mApp, _ := app.NewApp(mConfig)
file, err := os.Create(getProjectRoot() + "/docs/keybindings/Keybindings_" + lang + ".md")
file, err := os.Create("./docs/keybindings/Keybindings_" + lang + ".md")
if err != nil {
panic(err)
}

Loading…
Cancel
Save