1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-19 19:19:29 +08:00

Merge branch 'master' into feature

This commit is contained in:
LmeSzinc
2023-03-29 23:40:20 +08:00

View File

@@ -32,9 +32,9 @@ class GitManager(DeployConfig):
self.execute(f'"{self.git}" config --local --unset https.proxy', allow_failure=True)
if ssl_verify:
self.execute(f'"{self.git}" config --local http.sslVerify true')
self.execute(f'"{self.git}" config --local http.sslVerify true', allow_failure=True)
else:
self.execute(f'"{self.git}" config --local http.sslVerify false')
self.execute(f'"{self.git}" config --local http.sslVerify false', allow_failure=True)
logger.hr('Set Git Repository', 1)
if not self.execute(f'"{self.git}" remote set-url {source} {repo}', allow_failure=True):