小优化,防止安装 widevine 报错

This commit is contained in:
A lucky guy
2023-02-19 16:27:56 +08:00
committed by GitHub
parent 3b5d6cb081
commit b1cba0701f

View File

@@ -46,7 +46,8 @@ class Widevine(General):
super().download()
def copy(self):
shutil.rmtree("./widevine")
if os.path.exists("./widevine"):
shutil.rmtree("./widevine")
run(["chmod", "+x", self.extract_to, "-R"])
print_color("Copying widevine library files ...", bcolors.GREEN)
name = re.findall("([a-zA-Z0-9]+)\.zip", self.dl_link)[0]