From 33208d6037af637b950985268ddbdef62ba81c16 Mon Sep 17 00:00:00 2001 From: Birkin James Diana Date: Thu, 19 Dec 2024 15:58:24 -0500 Subject: [PATCH] updates uv venv path. --- self_updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/self_updater.py b/self_updater.py index 686caaf..c4933ef 100644 --- a/self_updater.py +++ b/self_updater.py @@ -94,7 +94,7 @@ def determine_uv_path() -> Path: log.debug(f'uv_path: ``{uv_path}``') except subprocess.CalledProcessError: log.debug("`which` unsuccessful; accessing this script's venv") - initial_uv_path: Path = Path(__file__).parent / 'env' / 'bin' / 'uv' + initial_uv_path: Path = Path(__file__).parent.parent / 'env' / 'bin' / 'uv' uv_path = initial_uv_path.resolve() log.debug(f'determined uv_path: ``{uv_path}``') return uv_path