Skip to content

Commit 5d88c89

Browse files
committed
Fix: Allow git config failures
Signed-off-by: LmeSzinc <[email protected]>
1 parent aeec13c commit 5d88c89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deploy/git.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ def git_repository_init(
3838
self.execute(f'"{self.git}" config --local --unset https.proxy', allow_failure=True)
3939

4040
if ssl_verify:
41-
self.execute(f'"{self.git}" config --local http.sslVerify true')
41+
self.execute(f'"{self.git}" config --local http.sslVerify true', allow_failure=True)
4242
else:
43-
self.execute(f'"{self.git}" config --local http.sslVerify false')
43+
self.execute(f'"{self.git}" config --local http.sslVerify false', allow_failure=True)
4444

4545
logger.hr('Set Git Repository', 1)
4646
if not self.execute(f'"{self.git}" remote set-url {source} {repo}', allow_failure=True):

0 commit comments

Comments
 (0)