Skip to content

Commit

Permalink
setup.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
pmbittner committed Jun 14, 2024
1 parent a6bacaf commit e3bc8f2
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@echo off

# Download the ground-truth.zip file
curl -o data/ground-truth.zip https://zenodo.org/records/11472597/files/ground-truth.zip?download=1

# Download the repos.zip file
curl -o data/repos.zip https://zenodo.org/records/11472597/files/repos.zip?download=1

# Unzip the ground-truth.zip file
Expand-Archive data/ground-truth.zip -DestinationPath data

# Unzip the repos.zip file
Expand-Archive data/repos.zip -DestinationPath data

# Clean zips
rm data/ground-truth.zip
rm data/repos.zip

0 comments on commit e3bc8f2

Please sign in to comment.