Skip to content

Commit 091b0f8

Browse files
committed
create venv if none exists
1 parent 0c61ca8 commit 091b0f8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

benchmark/benchmark.nu

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ export def install-py-binding [
5454
] {
5555
print "Installing new cpp-linter version (2.x) via python binding..."
5656
cd ..
57+
if not (".venv" | path exists) {
58+
run-cmd uv venv
59+
}
5760
let path_to_dist = if ($wheel_path | is-not-empty) {
5861
$wheel_path
5962
} else {

0 commit comments

Comments
 (0)