fix: clear stale pyc on start; correct email label-based extraction
This commit is contained in:
parent
518aa74dc4
commit
cb0c4a512f
3
start.sh
3
start.sh
@ -9,4 +9,7 @@ if [ ! -d ".venv" ]; then
|
|||||||
.venv/bin/playwright install chromium
|
.venv/bin/playwright install chromium
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Clear stale bytecode before each run to avoid executing outdated .pyc files
|
||||||
|
find src -name "*.pyc" -delete 2>/dev/null || true
|
||||||
|
|
||||||
PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"
|
PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user