Skip to content

Commit 16768aa

Browse files
committed
trying stuff
1 parent 0f4e145 commit 16768aa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jingle_python/gh_actions_setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ def install_uv():
3333
# Install uv using curl
3434
print("Installing uv using curl...", file=sys.stderr)
3535
try:
36-
subprocess.run(['curl', '-LsSf', 'https://astral.sh/uv/install.sh', '|', 'sh'], check=True)
36+
subprocess.run(['curl', '-LsSf', 'https://astral.sh/uv/install.sh'], check=True)
37+
subprocess.run(['chmod', '+x' 'install.sh'], check=True)
38+
subprocess.run(['install.sh'], check=True)
3739
print("uv installed successfully.", file=sys.stderr)
3840
except subprocess.CalledProcessError:
3941
print("Failed to install uv.", file=sys.stderr)

0 commit comments

Comments
 (0)