* refactor: Removed the unnecessary update_poetry script. * fix: Handle existing .env file without logging unnecessary message.
11 lines
173 B
Bash
11 lines
173 B
Bash
#!/bin/bash
|
|
|
|
# Create a .env if it doesn't exist, log all cases
|
|
if [ ! -f .env ]; then
|
|
echo "Creating .env file"
|
|
touch .env
|
|
else
|
|
# do nothing and do not log
|
|
true
|
|
fi
|