Use filepath.Join, not string math. Fixes #226.

This commit is contained in:
Garth Kidd 2016-01-17 11:24:54 +11:00
parent 9c93009019
commit 8e6aca4182
2 changed files with 6 additions and 4 deletions

View file

@ -18,6 +18,7 @@ import (
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strings"
"time"
@ -46,8 +47,8 @@ func GenManTree(cmd *cobra.Command, header *GenManHeader, dir string) error {
}
needToResetTitle := header.Title == ""
filename := cmd.CommandPath()
filename = dir + strings.Replace(filename, " ", "-", -1) + ".1"
basename := strings.Replace(cmd.CommandPath(), " ", "_", -1) + ".1"
filename := filepath.Join(dir, basename)
f, err := os.Create(filename)
if err != nil {
return err

View file

@ -17,6 +17,7 @@ import (
"fmt"
"io"
"os"
"path/filepath"
"sort"
"strings"
"time"
@ -156,8 +157,8 @@ func GenMarkdownTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHa
}
}
filename := cmd.CommandPath()
filename = dir + strings.Replace(filename, " ", "_", -1) + ".md"
basename := strings.Replace(cmd.CommandPath(), " ", "_", -1) + ".md"
filename := filepath.Join(dir, basename)
f, err := os.Create(filename)
if err != nil {
return err