#!/bin/bash
# 每日招标检索定时任务
# 使用自动化爬虫

source /Users/agent/.venv/bin/activate
cd /Users/agent/.openclaw/workspace
python3 scripts/tenders_auto_scraper.py >> /tmp/tenders_scraper.log 2>&1
echo "$(date) - 爬虫已完成" >> /tmp/tenders_scraper.log
