Different path handling when loading resources on Windows and Mac #152
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I have a font we'll call
font.ttf
in mydata
directory, which I bundle using--resource-dir data
. On Windows, I can load this font file with the path/font.ttf
. However, on Mac this does not work, and I need to usefont.ttf
.It feels reasonable to me to allow the
/
at the start to explicitly root paths to the resource directory, but at the very least it is weird that things are inconsistent.Both should work with an initial
/
. I'll look into this