You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently dir_copy uses dir_create internally to create destination folder. But it uses default permissions (default value of mode argument which is "u=rwx,go=rx").
Shouldn't it copy the permissions from the original folder? Or at least give a way to change it (e.g. with mode argument passed on to dir_create)?
I came across this while copying results from one workflow to another and realized I was the only person on our team who could work with copied folders :/
The text was updated successfully, but these errors were encountered:
Currently
dir_copy
usesdir_create
internally to create destination folder. But it uses default permissions (default value ofmode
argument which is"u=rwx,go=rx"
).Shouldn't it copy the permissions from the original folder? Or at least give a way to change it (e.g. with
mode
argument passed on todir_create
)?I came across this while copying results from one workflow to another and realized I was the only person on our team who could work with copied folders :/
The text was updated successfully, but these errors were encountered: