We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f605e4 commit 14e272bCopy full SHA for 14e272b
.openhands/setup.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+if ! command -v uv &> /dev/null; then
4
+ echo "uv is not installed. Installing..."
5
+ curl -LsSf https://astral.sh/uv/install.sh | sh
6
+else
7
+ echo "uv is already installed."
8
+ uv self update # always update to the latest version
9
+fi
10
11
+make build
0 commit comments