From 81c5c1f87fbd1db90009060b525dff07568cb0da Mon Sep 17 00:00:00 2001 From: vbuglov Date: Tue, 5 Mar 2024 11:46:48 +0300 Subject: [PATCH] feat(push): add push without ssl to makefile --- proxy-ui-app/Makefile | 2 +- users-manage/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy-ui-app/Makefile b/proxy-ui-app/Makefile index 5513407..12fd034 100644 --- a/proxy-ui-app/Makefile +++ b/proxy-ui-app/Makefile @@ -44,4 +44,4 @@ ifeq ($(commit),) $(error mn is not set) endif make prehook - git add . && git commit -m "feat($(commit)):" && git push \ No newline at end of file + git add . && git commit -m "feat($(commit)):" && GIT_SSL_NO_VERIFY=true git push \ No newline at end of file diff --git a/users-manage/Makefile b/users-manage/Makefile index 1b43cd4..e00d4ec 100644 --- a/users-manage/Makefile +++ b/users-manage/Makefile @@ -45,4 +45,4 @@ ifeq ($(commit),) $(error mn is not set) endif make prehook - git add . && git commit -m "feat($(commit)):" && git push \ No newline at end of file + git add . && git commit -m "feat($(commit)):" && GIT_SSL_NO_VERIFY=true git push \ No newline at end of file