修复配置脚本解释器问题

This commit is contained in:
2023-01-13 21:27:15 +08:00
parent 41887ef2a2
commit 54df9ae1cb
8 changed files with 236 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ programPath = os.path.split(os.path.realpath(__file__))[0] # 返回 string
information = json.loads(readtxt(f"{programPath}/../information.json"))
version = information["Version"]
thankText = ""
for i in information["Thank"]:
for i in information["Contribute"]:
thankText += f"{i}\n"
programEnv = [
["WINEPREFIX", f"{os.path.expanduser('~')}/.wine"],