Skip to content

Commit 14e272b

Browse files
authored
add openhands setup.sh (#31)
1 parent 0f605e4 commit 14e272b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.openhands/setup.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)