1
0
mirror of https://github.com/Prowlarr/Indexers.git synced 2025-12-24 13:08:27 +00:00

Fixed: shellcheck warnings for venv sourcing and unused variables

This commit is contained in:
ServarrAdmin
2025-08-15 23:20:20 -05:00
committed by bakerboy448
parent 48a426ab61
commit b6ffad5692
2 changed files with 5 additions and 0 deletions

View File

@@ -20,9 +20,11 @@ if [ -d ".venv" ]; then
echo "Activating virtual environment"
if [ -f ".venv/bin/activate" ]; then
# Linux/Mac
# shellcheck disable=SC1091
source .venv/bin/activate
elif [ -f ".venv/Scripts/activate" ]; then
# Windows
# shellcheck disable=SC1091
source .venv/Scripts/activate
fi
fi