We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b61e51 commit a151b23Copy full SHA for a151b23
python/rpdk/go/codegen.py
@@ -170,7 +170,7 @@ def generate(self, project):
170
LOG.debug("Writing project: %s", path)
171
template = self.env.get_template("main.go.tple")
172
importpath = Path(project.settings["import_path"])
173
- contents = template.render(path=importpath / "cmd" / "resource")
+ contents = template.render(path=(importpath / "cmd" / "resource").as_posix())
174
project.overwrite(path, contents)
175
format_paths.append(path)
176
0 commit comments