feat: 删除sensitive.json以sensitive-template.json替换

This commit is contained in:
Rock Chin
2023-03-05 10:21:32 +08:00
parent 101f26e5a3
commit 56e906c83f
3 changed files with 10 additions and 2 deletions

View File

@@ -314,6 +314,10 @@ if __name__ == '__main__':
if not os.path.exists('banlist.py'):
shutil.copy('banlist-template.py', 'banlist.py')
# 检查是否有sensitive.json,
if not os.path.exists("sensitive.json"):
shutil.copy("sensitive-template.json", "sensitive.json")
if len(sys.argv) > 1 and sys.argv[1] == 'init_db':
init_db()
sys.exit(0)