mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-16 15:35:12 +00:00
fix: set repo of build-in update
This commit is contained in:
parent
ff3ec041d2
commit
f8404edd9e
@ -77,6 +77,12 @@ class DeployConfig(ConfigModel):
|
||||
self.config_template = {}
|
||||
self.read()
|
||||
|
||||
self.set_repo()
|
||||
|
||||
self.write()
|
||||
self.show_config()
|
||||
|
||||
def set_repo(self):
|
||||
# Bypass webui.config.DeployConfig.__setattr__()
|
||||
# Don't write these into deploy.yaml
|
||||
if self.Repository == 'cn':
|
||||
@ -84,9 +90,6 @@ class DeployConfig(ConfigModel):
|
||||
if self.Repository == 'global':
|
||||
super().__setattr__('Repository', 'https://github.com/TheFunny/ArisuAutoSweeper')
|
||||
|
||||
self.write()
|
||||
self.show_config()
|
||||
|
||||
def show_config(self):
|
||||
logger.hr("Show deploy config", 1)
|
||||
for k, v in self.config.items():
|
||||
|
||||
@ -5,6 +5,7 @@ import time
|
||||
from typing import Generator, List, Tuple
|
||||
|
||||
import requests
|
||||
|
||||
from deploy.Windows.config import ExecutionError
|
||||
from deploy.Windows.git import GitManager
|
||||
from deploy.Windows.pip import PipManager
|
||||
@ -20,6 +21,7 @@ from module.webui.utils import TaskHandler, get_next_time
|
||||
class Updater(DeployConfig, GitManager, PipManager):
|
||||
def __init__(self, file=DEPLOY_CONFIG):
|
||||
super().__init__(file=file)
|
||||
self.set_repo()
|
||||
self.state = 0
|
||||
self.event: threading.Event = None
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user