mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 04:22:46 +08:00
12 lines
273 B
Bash
12 lines
273 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
echo "Downloading models..."
|
|
|
|
aria2c --disable-ipv6 --input-file /workspace/Docker/links.txt --dir /workspace --continue
|
|
|
|
echo "Checking SHA256..."
|
|
|
|
parallel --will-cite -a /workspace/Docker/links.sha256 "echo -n {} | sha256sum -c"
|