Skip to content

Commit c66ade4

Browse files
committed
fix: Fix toolbox download version 'v' prefix
1 parent e686493 commit c66ade4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-core/tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def get_toolbox_binary_url(toolbox_version: str) -> str:
7575
arch = (
7676
"arm64" if os_system == "darwin" and platform.machine() == "arm64" else "amd64"
7777
)
78-
return f"v{toolbox_version}/{os_system}/{arch}/toolbox"
78+
return f"{toolbox_version}/{os_system}/{arch}/toolbox"
7979

8080

8181
def get_auth_token(client_id: str) -> str:

0 commit comments

Comments
 (0)