diff options
Diffstat (limited to 'continuedev/install-dependencies.sh')
-rwxr-xr-x | continuedev/install-dependencies.sh | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/continuedev/install-dependencies.sh b/continuedev/install-dependencies.sh deleted file mode 100755 index 8f1b5d27..00000000 --- a/continuedev/install-dependencies.sh +++ /dev/null @@ -1,16 +0,0 @@ - -#!/bin/bash - -# Check if Poetry is installed -if ! command -v poetry &> /dev/null -then - echo "Poetry not found, installing..." - curl -sSL https://install.python-poetry.org | python3 - -fi - -# Install or update dependencies & create .venv if it doesn't exist -echo "Installing dependencies..." -poetry install - -echo "Running type generation..." -poetry run typegen |