mirror of
https://github.com/zama-ai/tfhe-rs.git
synced 2026-01-06 21:34:05 -05:00
17 lines
304 B
Bash
Executable File
17 lines
304 B
Bash
Executable File
#!/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=""
|