Skip to content

Commit b2a8193

Browse files
authored
Merge pull request #10 from jwlodek/fix-linker
Fix softlink creation workflow
2 parents 5fb2af1 + 88bcd6e commit b2a8193

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

linker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ def create_symlinks(ref):
5959
stats = path_proposal.stat()
6060
path_expr = path_proposal / "experiments" # experiments directory
6161
path_expr.mkdir(exist_ok=True, parents=True)
62-
chmod_and_chown(path_expr, uid=stats.st_uid, gid=stats.st_gid)
62+
#chmod_and_chown(path_expr, uid=stats.st_uid, gid=stats.st_gid)
6363
path_expr_alias = path_expr / path_expr_alias
6464
path_expr_alias.mkdir(exist_ok=True, parents=True)
65-
chmod_and_chown(path_expr_alias, uid=stats.st_uid, gid=stats.st_gid)
65+
#chmod_and_chown(path_expr_alias, uid=stats.st_uid, gid=stats.st_gid)
6666
else:
6767
logger.info("Directory for links is not specified; skipping.")
6868
return

0 commit comments

Comments
 (0)