mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
Fix korean invalid path
This commit is contained in:
parent
8158a97909
commit
6e68b88d33
@ -28,14 +28,18 @@ if os.name == 'nt':
|
|||||||
if not (re.match(r'^[A-Za-z0-9_/\\:.]*$', installpath)):
|
if not (re.match(r'^[A-Za-z0-9_/\\:.]*$', installpath)):
|
||||||
import shutil
|
import shutil
|
||||||
python_dir = os.getcwd()
|
python_dir = os.getcwd()
|
||||||
if (installpath[:len(python_dir)] == python_dir):
|
if (installpath[:len(python_dir)].upper() == python_dir.upper()):
|
||||||
dicpath = os.path.join(os.path.relpath(installpath,python_dir),'data','mecabrc')
|
dicpath = os.path.join(os.path.relpath(installpath,python_dir),'data','mecabrc')
|
||||||
else:
|
else:
|
||||||
if os.path.exists(os.path.join('komecabdata')):
|
if not os.path.exists('TEMP'):
|
||||||
shutil.rmtree(os.path.join('komecabdata'))
|
os.mkdir('TEMP')
|
||||||
|
if not os.path.exists(os.path.join('TEMP', 'ko')):
|
||||||
|
os.mkdir(os.path.join('TEMP', 'ko'))
|
||||||
|
if os.path.exists(os.path.join('TEMP', 'ko', 'ko_dict')):
|
||||||
|
shutil.rmtree(os.path.join('TEMP', 'ko', 'ko_dict'))
|
||||||
|
|
||||||
shutil.copytree(os.path.join(installpath, 'data'), 'komecabdata')
|
shutil.copytree(os.path.join(installpath, 'data'), os.path.join('TEMP', 'ko', 'ko_dict'))
|
||||||
dicpath = os.path.join('komecabdata', 'mecabrc')
|
dicpath = os.path.join('TEMP', 'ko', 'ko_dict', 'mecabrc')
|
||||||
else:
|
else:
|
||||||
dicpath=os.path.abspath(os.path.join(installpath, 'data/mecabrc'))
|
dicpath=os.path.abspath(os.path.join(installpath, 'data/mecabrc'))
|
||||||
return dicpath
|
return dicpath
|
||||||
|
Loading…
x
Reference in New Issue
Block a user