Hey guys,
On production server resources are not loaded if dirs contains \ chars instead of / chars.
This didn't work:
translation:
dirs: ['%appDir%\Core\lang']
but this works
translation:
dirs:
- %appDir%/Core/lang
Maybe there should be some checking if given path is ok or not (and probably throw exception to let user know that path is invalid because it has invalid chars), what do you think?
Hey guys,
On production server resources are not loaded if dirs contains
\chars instead of/chars.This didn't work:
but this works
Maybe there should be some checking if given path is ok or not (and probably throw exception to let user know that path is invalid because it has invalid chars), what do you think?