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