chore: use script to pull hpu files

This commit is contained in:
Nicolas Sarlin
2025-07-04 16:55:22 +02:00
committed by Nicolas Sarlin
parent 57cbab9fe1
commit 7bcd6b94da
4 changed files with 12 additions and 8 deletions

16
scripts/pull_lfs_data.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -e
if [ $# -lt 1 ]; then
echo "invalid arguments, usage:\n"
echo "$0 <data_path>"
exit 1
fi
if ! git lfs env 2>/dev/null >/dev/null; then
echo "git lfs is not installed, please install it and try again"
exit 1
fi
git lfs pull --include="$1/*" --exclude=""