We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeec13c commit 5d88c89Copy full SHA for 5d88c89
deploy/git.py
@@ -38,9 +38,9 @@ def git_repository_init(
38
self.execute(f'"{self.git}" config --local --unset https.proxy', allow_failure=True)
39
40
if ssl_verify:
41
- self.execute(f'"{self.git}" config --local http.sslVerify true')
+ self.execute(f'"{self.git}" config --local http.sslVerify true', allow_failure=True)
42
else:
43
- self.execute(f'"{self.git}" config --local http.sslVerify false')
+ self.execute(f'"{self.git}" config --local http.sslVerify false', allow_failure=True)
44
45
logger.hr('Set Git Repository', 1)
46
if not self.execute(f'"{self.git}" remote set-url {source} {repo}', allow_failure=True):
0 commit comments