use cache from github workflows

This commit is contained in:
ggman12
2026-02-01 21:01:31 -05:00
parent 70cc0ab490
commit 2763e923fc
2 changed files with 21 additions and 17 deletions
-11
View File
@@ -24,17 +24,6 @@ args = parser.parse_args()
# Clone repository if it doesn't exist
REPO = Path("data/scrape-faa-releasable-aircraft")
if not REPO.exists():
print(f"Cloning repository to {REPO}...")
subprocess.run([
"git", "clone",
"https://github.com/simonw/scrape-faa-releasable-aircraft",
str(REPO)
], check=True)
print("Repository cloned successfully.")
else:
print(f"Repository already exists at {REPO}")
OUT_ROOT = Path("data/faa_releasable_historical")
OUT_ROOT.mkdir(parents=True, exist_ok=True)