Skip to content

Commit e4138bf

Browse files
committed
feat(rvcmd): update version to v0.2.5
1 parent 839c60e commit e4138bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/checksum.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
wget https://github.com/fumiama/RVC-Models-Downloader/releases/download/v0.2.5/rvcmd_linux_amd64.deb
1919
sudo apt -y install ./rvcmd_linux_amd64.deb
2020
rm -f ./rvcmd_linux_amd64.deb
21-
rvcmd -notrs -w 1 -notui assets/all
21+
rvcmd -notrs -w 1 -notui assets/rvc
2222
2323
- name: Calculate all Checksums
2424
run: go run tools/checksum/*.go

.github/workflows/unitest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python -m pip install --upgrade wheel
2626
pip install torch torchvision torchaudio
2727
pip install -r requirements/main.txt
28-
rvcmd -notrs -w 1 -notui assets/all
28+
rvcmd -notrs -w 1 -notui assets/rvc
2929
- name: Test step 1 & 2
3030
run: |
3131
mkdir -p logs/mi-test

infer/lib/rvcmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def download_all_assets(tmpdir: str, version="0.2.5"):
205205
else:
206206
download_and_extract_tar_gz(RVCMD_URL, tmpdir)
207207
os.chmod(cmdfile, 0o755)
208-
subprocess.run([cmdfile, "-notui", "-w", "0", "assets/all"])
208+
subprocess.run([cmdfile, "-notui", "-w", "0", "assets/rvc"])
209209
except Exception:
210210
BASE_URL = "https://raw.gitcode.com/u011570312/RVC-Models-Downloader/assets/"
211211
suffix = {

0 commit comments

Comments
 (0)