Skip to content

Commit

Permalink
updates uv venv path.
Browse files Browse the repository at this point in the history
  • Loading branch information
birkin committed Dec 19, 2024
1 parent a72c653 commit 33208d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion self_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 33208d6

Please sign in to comment.