11 lines
118 B
Bash
Raw Normal View History

2025-03-07 21:13:53 +08:00
#!/bin/bash
if [ -f .env ]; then
source .env
echo "Check Finish."
else
echo "Error: .env file not found."
fi