Merge pull request #3 from tom-snow/patch-1

小优化,防止安装 widevine 报错
This commit is contained in:
ayasa520
2023-02-22 23:04:09 +08:00
committed by GitHub

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]