Merge pull request #100 from mattn/to_slash

call ToSlash() to be slash separated paths also on Windows.
pull/4/head
Jim Teeuwen 2015-07-03 11:09:08 +02:00
commit 2026467100
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ func Translate(c *Config) error {
for _, asset := range toc {
relative, _ := filepath.Rel(wd, asset.Path)
if _, err = fmt.Fprintf(bfd, "// %s\n", relative); err != nil {
if _, err = fmt.Fprintf(bfd, "// %s\n", filepath.ToSlash(relative)); err != nil {
return err
}
}