We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5fb2af1 + 88bcd6e commit b2a8193Copy full SHA for b2a8193
1 file changed
linker.py
@@ -59,10 +59,10 @@ def create_symlinks(ref):
59
stats = path_proposal.stat()
60
path_expr = path_proposal / "experiments" # experiments directory
61
path_expr.mkdir(exist_ok=True, parents=True)
62
- chmod_and_chown(path_expr, uid=stats.st_uid, gid=stats.st_gid)
+ #chmod_and_chown(path_expr, uid=stats.st_uid, gid=stats.st_gid)
63
path_expr_alias = path_expr / path_expr_alias
64
path_expr_alias.mkdir(exist_ok=True, parents=True)
65
- chmod_and_chown(path_expr_alias, uid=stats.st_uid, gid=stats.st_gid)
+ #chmod_and_chown(path_expr_alias, uid=stats.st_uid, gid=stats.st_gid)
66
else:
67
logger.info("Directory for links is not specified; skipping.")
68
return
0 commit comments