修复部分系统下无法更新文件位置的bug

This commit is contained in:
EillesWan 2021-11-23 22:27:50 +08:00
parent 015ab129e9
commit ee5fd84d51

View File

@ -178,8 +178,11 @@ def __main__():
os.chdir(__file__[:len(__file__)-__file__[len(__file__)::-1].index('\\')])
log("更新执行位置,当前文件位置"+__file__)
else:
os.chdir(__file__[:len(__file__)-__file__[len(__file__)::-1].index('/')])
log("其他平台:更新执行位置,当前文件位置"+__file__)
try:
os.chdir(__file__[:len(__file__)-__file__[len(__file__)::-1].index('/')])
except:
pass
log("其他平台:"+sys.platform+"更新执行位置,当前文件位置"+__file__)
print('完成!')