Skip to content

Commit 6b12e08

Browse files
committed
fix(beeai-cli): force managed python in install script
Signed-off-by: Jan Pokorný <JenomPokorny@gmail.com>
1 parent c747810 commit 6b12e08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ PATH="$new_path" uv tool uninstall --quiet beeai-cli >/dev/null 2>&1 || true
1515

1616
echo "Installing beeai-cli..."
1717
case "${BEEAI_VERSION:-latest}" in
18-
"latest") PATH="$new_path" uv tool install --refresh --quiet --force beeai-cli ;;
19-
"pre") PATH="$new_path" uv tool install --refresh --quiet --force --pre beeai-cli ;;
20-
*) PATH="$new_path" uv tool install --refresh --quiet --force "beeai-cli==$BEEAI_VERSION" ;;
18+
"latest") PATH="$new_path" uv tool install --managed-python --refresh --quiet --force beeai-cli ;;
19+
"pre") PATH="$new_path" uv tool install --managed-python --refresh --quiet --force --pre beeai-cli ;;
20+
*) PATH="$new_path" uv tool install --managed-python --refresh --quiet --force "beeai-cli==$BEEAI_VERSION" ;;
2121
esac
2222
PATH="$new_path" beeai self install

0 commit comments

Comments
 (0)