-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drake/lock permissions #1232
Comments
|
You could also try and install wlandau/txtq@ba15026. That commit forces |
Hmm... that turns out to not work on Windows for some reason. Try wlandau/txtq@4bf8876. In that commit, the lockfile is created in advance and outside |
From r-lib/filelock#26, it looks like this error came from the fact that some file systems do not support file locking. Should be fixed for |
Prework
drake
's code of conduct.Description
When creating a new drake project that is stored on a network drive the
.drake/drake/history/lock
file doesn't have group read permissions. This tends to cause issues for backup jobs (run under a backup user), as it isn't able to read the lock file.What it means for me personally is needing to adjust the permissions for the lock file for each new drake project. While it's not a deal breaker, I was wondering if there might be something in the way that
use_drake()
creates objects that might allow the read permissions for the group to be applied.The text was updated successfully, but these errors were encountered: