From 72b52b03315d2b5738ec95da883bdf37e1fbe790 Mon Sep 17 00:00:00 2001 From: cyz Date: Sat, 13 Jul 2024 19:27:24 +0800 Subject: [PATCH] =?UTF-8?q?FIX:=20=E4=BF=AE=E5=A4=8D=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E8=A7=A3=E5=8E=8B=E5=AE=8C=E6=88=90LibriTTS=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=97=B6=EF=BC=8C=E7=94=9F=E6=88=90.complete=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=EF=BC=8C=E8=BF=99=E5=AF=BC=E8=87=B4=E6=AF=8F?= =?UTF-8?q?=E6=AC=A1=E6=89=A7=E8=A1=8Cdownload=5Fand=5Funtar.sh=E6=97=B6?= =?UTF-8?q?=E9=83=BD=E8=A6=81=E9=87=8D=E6=96=B0=E4=B8=8B=E8=BD=BD=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/libritts/cosyvoice/local/download_and_untar.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/libritts/cosyvoice/local/download_and_untar.sh b/examples/libritts/cosyvoice/local/download_and_untar.sh index cd32fb6..ec1360a 100755 --- a/examples/libritts/cosyvoice/local/download_and_untar.sh +++ b/examples/libritts/cosyvoice/local/download_and_untar.sh @@ -43,7 +43,7 @@ if [ -z "$url" ]; then exit 1 fi -if [ -f $data/LibriSpeech/$part/.complete ]; then +if [ -f $data/LibriTTS/$part/.complete ]; then echo "$0: data part $part was already successfully extracted, nothing to do." exit 0 fi @@ -87,7 +87,7 @@ if ! tar -C $data -xvzf $data/$part.tar.gz; then exit 1 fi -touch $data/LibriSpeech/$part/.complete +touch $data/LibriTTS/$part/.complete echo "$0: Successfully downloaded and un-tarred $data/$part.tar.gz"