9 lines
No EOL
169 B
Bash
9 lines
No EOL
169 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
|
|
echo ".env file already exists"
|
|
fi |