Skip to content

Commit

Permalink
use relative path when creating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseduffield committed Sep 7, 2019
1 parent 956b273 commit c8adaa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate_cheatsheet.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit c8adaa9

Please sign in to comment.