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 d917a1a commit 51702f2Copy full SHA for 51702f2
locker.py
@@ -16,7 +16,7 @@
16
17
result = {'maven': {}, 'git': {}}
18
19
-mavenDir = args.home.joinpath('.m2', 'repository')
+mavenDir = args.home.joinpath('.m2', 'repository').resolve()
20
21
if mavenDir.exists():
22
for f in mavenDir.rglob('*'):
@@ -27,7 +27,7 @@
27
sha256_hash = sha256(f.read_bytes()).hexdigest()
28
result['maven'][file] = sha256_hash
29
30
-gitlibsDir = args.home.joinpath('.gitlibs')
+gitlibsDir = args.home.joinpath('.gitlibs').resolve()
31
32
if gitlibsDir.exists():
33
for namespace_path in gitlibsDir.joinpath('libs').iterdir():
0 commit comments