Skip to content

Commit 698df97

Browse files
committed
Local index now ensures lib paths are absolute
1 parent ad49f53 commit 698df97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

olman-client/olman_client/install_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def install(name: str, version_exact: str, *, force=False, reinstall=False):
3838
lib_path = utils.extractFile(compressed_lib_path, dst_dir=INSTALL_LOCATION)
3939
lib_path = lib_path.rename(lib_path.with_name(name))
4040
compressed_lib_path.unlink()
41-
local_index.add(remote_lib.manifest, lib_path)
41+
local_index.add(remote_lib.manifest, lib_path.absolute())
4242

4343

4444
def remove(name: str, missing_ok: bool = True):

0 commit comments

Comments
 (0)