README fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-09-25 12:29:41 +09:00
parent da52fbc783
commit bd7a481803
2 changed files with 5 additions and 5 deletions

View File

@@ -19,12 +19,12 @@ fi
# Activate virtual environment
echo "🔧 Activating virtual environment..."
if [ -f ".venv/bin/activate" ]; then
source .venv/bin/activate
if [ -f "venv/bin/activate" ]; then
source venv/bin/activate
else
echo "⚠️ Virtual environment not found. Creating..."
python3 -m venv .venv
source .venv/bin/activate
python3 -m venv venv
source venv/bin/activate
fi
# Install dependencies