You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using file paths to specify the location of a template, the generated code will use either a "/" or a "\" to separate directories in the path. This is an issue if you checkin the generated code and you have some users that generate using a Linux system and other users that generate using a Windows system.
The expectation is that the generated code should not change based on what type of system the generation is performed on.
Propose to do a simple search/replace on the file path and replace any "\" with a "/"
The text was updated successfully, but these errors were encountered:
Windows has used / for almost two decades, the \ requirement is a bit of a misconception, almost all but maybe old DOS software uses / now so it's best to just always use / for all platforms.
Can open a PR to fix this issue as I use Windows and Mac mainly and this is a bit of an annoying bug.
When using file paths to specify the location of a template, the generated code will use either a "/" or a "\" to separate directories in the path. This is an issue if you checkin the generated code and you have some users that generate using a Linux system and other users that generate using a Windows system.
The expectation is that the generated code should not change based on what type of system the generation is performed on.
Propose to do a simple search/replace on the file path and replace any "\" with a "/"
The text was updated successfully, but these errors were encountered: