We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e68bff6 commit fa7d7b5Copy full SHA for fa7d7b5
modules/drv-parts/lock/default.nix
@@ -46,7 +46,9 @@
46
check=True, text=True, capture_output=True)
47
.stdout.strip())
48
lock_path_rel = Path('${cfg.lockFileRel}') # noqa: E501
49
- lock_path = repo_path / lock_path_rel.relative_to(lock_path_rel.anchor)
+ # lock_path = repo_path / lock_path_rel.relative_to(lock_path_rel.anchor)
50
+ lock_path = \
51
+ Path('.').absolute() / lock_path_rel.relative_to(lock_path_rel.anchor)
52
lock_path.parent.mkdir(parents=True, exist_ok=True)
53
54
0 commit comments