Ben Baumer
Ben Baumer
@moritzpschwarz I have this problem for *all* font files, using Ubuntu 20.04. I don't think the problem is the files themselves, as they were working with `extrafont` on previous version...
See #32 . I have the same problem on Ubuntu 20.04. In #32 the problem is traced to `Rttf2pt1`, but I had this working on this same machine before upgrading...
Confirmed! Downgrading to 1.3.8 fixed my problem on Ubuntu as well. Thanks @wz-billings !
* packages: currently we use `requirements` to scan the code and record the names of the packages that are called. If they use one of the functions we have shimmed,...
https://github.com/dreamRs/prefixer
See also #29
It's actually worse than that. If `here::here()` returns `/path/to/dir`, then consider: ``` is_path_here("../dir/data.csv") ``` Currently this returns `TRUE`, because that is the behavior of `fs::path_has_parent()`. But for reproducibility's sake it...
It does require `here`! [But maybe not in the way you are imagining.] My question is more philosophical, I think. If I reference a file that *is* in the project...
An even more subtle distinction: 1. A file located in `here("R")` references a file at `../data/data.csv` 2. A file located `here()` references a file at `../data/data.csv` 3. A file located...
Right. So one question is whether we should do some kind of regexp search for paths that contain `..`, or just rely on `fs::path_has_parent()` and other path computation tools. @hadley...