diff --git a/Makefile b/Makefile index 6e84e64c9..77fd21289 100644 --- a/Makefile +++ b/Makefile @@ -249,7 +249,6 @@ setup_devcontainer: ## set up the development container poetry run langflow --path src/frontend/build setup_env: ## set up the environment - @sh ./scripts/setup/update_poetry.sh 1.8.2 @sh ./scripts/setup/setup_env.sh frontend: ## run the frontend in development mode diff --git a/scripts/setup/setup_env.sh b/scripts/setup/setup_env.sh index 70f580784..a594fc1ea 100644 --- a/scripts/setup/setup_env.sh +++ b/scripts/setup/setup_env.sh @@ -5,5 +5,6 @@ if [ ! -f .env ]; then echo "Creating .env file" touch .env else - echo ".env file already exists" -fi \ No newline at end of file + # do nothing and do not log + true +fi diff --git a/scripts/setup/update_poetry.sh b/scripts/setup/update_poetry.sh deleted file mode 100644 index a8825a116..000000000 --- a/scripts/setup/update_poetry.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/bash - -# Check if version argument is provided -if [ -z "$1" ] -then - echo "No argument supplied. Please provide the Poetry version to check." - exit 1 -fi - -# Utility function to display an error message and exit -exit_with_message() { - echo "$1" >&2 - exit 1 -} - -# Check if version argument is provided -if [ -z "$1" ]; then - exit_with_message "No argument supplied. Please provide the Poetry version to check." -fi - -# Detect Operating System -OS="$(uname -s)" -case "$OS" in - Darwin) - OS="macOS" - ;; - Linux) - OS="Linux" - ;; - *) - exit_with_message "Unsupported operating system. This script supports macOS and Linux." - ;; -esac - - -echo "Checking Poetry installation..." - -# Check if Poetry is installed -if ! command -v poetry &> /dev/null -then - echo "Poetry is not installed. Installing..." - # Also install python 3.10 and use - curl -sSL https://install.python-poetry.org | python3 - - echo "Poetry installed successfully." -else - echo "Poetry is already installed." -fi - -echo "Checking Poetry version..." - -# Check Poetry version -poetry_version=$(poetry --version | awk '{print $3}' | tr -d '()') -echo "Current Poetry version: $poetry_version" - -# Compare version -if [[ "$(printf '%s\n' "$1" "$poetry_version" | sort -V | head -n1)" != "$1" ]]; then - echo "Poetry version is lower than $1. Updating..." - # Update Poetry - poetry self update - echo "Poetry updated successfully." -else - echo "Poetry version is $1 or higher. No need to update." -fi - - -