Skip to content

Commit 1ade942

Browse files
committed
Yet another gen-scie-platforms fix.
1 parent 54ac27c commit 1ade942

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/gen-scie-platforms.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,12 @@ jobs:
6363
cat << EOF > ./gen-scie-platform.sh
6464
#!/usr/bin/env bash
6565
66-
curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR=.bin sh
67-
source .bin/env
66+
curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR="\$PWD/.bin" sh
67+
export PATH="\$PWD/.bin:\$PATH"
68+
69+
uv python update-shell
6870
if ! uv python find 3.11; then
69-
uv python install -i .bin 3.11
71+
uv python install -i "\$PWD/.bin 3.11
7072
fi
7173
PYTHON="\$(uv python find 3.11)"
7274

0 commit comments

Comments
 (0)