uxtoolkit / cog

The cog package provides functionality to develop reusable components (cogs) for Isomorphic Go web applications.
Other
9 stars 3 forks source link

Paths not Windows friendly #3

Closed bketelsen closed 6 years ago

bketelsen commented 6 years ago

Paths throughout the toolkit use unix style slashes and string concatenation. Change to filepath.Join(first,second) to make these paths windows friendly.

EngineerKamesh commented 6 years ago

Thanks for the heads up. Will make the paths more platform agnostic, as per your helpful advice.

EngineerKamesh commented 6 years ago

As per your feedback, I have made the pathing platform agnostic.