chore: remove unused script and log (#3343)

* refactor: Removed the unnecessary update_poetry script.

* fix: Handle existing .env file without logging unnecessary message.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-08-15 08:36:06 -03:00 committed by GitHub
commit db72268a04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 69 deletions

View file

@ -5,5 +5,6 @@ if [ ! -f .env ]; then
echo "Creating .env file"
touch .env
else
echo ".env file already exists"
fi
# do nothing and do not log
true
fi

View file

@ -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