mirror of
https://github.com/fumiama/RVC-Models-Downloader.git
synced 2024-11-17 13:47:11 +09:00
11 lines
223 B
Bash
Executable File
11 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
# Should be run by go generate. DO NOT run it directly.
|
|
|
|
files=()
|
|
while IFS= read -r line; do
|
|
files+=("$line")
|
|
done <<< "$(find "$@" | grep -v .DS_Store | sort)"
|
|
|
|
rm -rf cfg.zip
|
|
zip -9 cfg.zip "${files[@]}"
|