Skip to content

Commit 3e7d2c9

Browse files
committed
Convert path to slashes before passing to build.Context.Import()
On UNIX systems, we get away with the existing code because filesystem and package paths both use the same kind of separator. On Windows, sadly, that isn't the case and that causes everything to go wrong (more specifically, we end up not being able to detect that this is a local package, and so the output path for the generated files is wrong). Fixes #166.
1 parent e0e292d commit 3e7d2c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser/parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ func (b *Builder) importWithMode(dir string, mode build.ImportMode) (*build.Pack
589589
if err != nil {
590590
return nil, fmt.Errorf("unable to get current directory: %v", err)
591591
}
592-
buildPkg, err := b.context.Import(dir, cwd, mode)
592+
buildPkg, err := b.context.Import(filepath.ToSlash(dir), cwd, mode)
593593
if err != nil {
594594
return nil, err
595595
}

0 commit comments

Comments
 (0)