-
Notifications
You must be signed in to change notification settings - Fork 303
Closed
Labels
Description
This issue came up when using rrtools::use_compendium which is a wrapper for usethis::create_package. Below is the issue I reported to rrtools:
When initiating a new compendium with:
rrtools::use_compendium("~/path/to/new/compendium")
where ~/path/to/new is a symlink to /some/other/path, rrtools throws an error:
> rrtools::use_compendium("~/path/to/new/compendium")
Error: '/home/nfs/user.name/path/to/new' is not a directory.
However, replacing symlink with full path works:
rrtools::use_compendium("/some/other/path/compendium")
Reactions are currently unavailable