diff --git a/deploy-this/update-from-git.jenkinsfile b/deploy-this/update-from-git.jenkinsfile index 0a8d63a..b912b5d 100755 --- a/deploy-this/update-from-git.jenkinsfile +++ b/deploy-this/update-from-git.jenkinsfile @@ -1,21 +1,17 @@ def projects = [ "proxy-nginx", - "arti-angular-app", - "angular-services", - "chat-gpt", - "zaklik-by-spring-boot", "zaklik-by-node-js" ] def git_take( projects ){ if( 0 == projects.size() ){ - def git_pull ="git -c http.sslVerify=false pull" + def git_pull ="git pull" sh( git_pull ) sh("git log -n 1") }else{ for( project in projects ){ - def git_take ="git -c http.sslVerify=false " + def git_take ="git " if( fileExists( project ) ){ dir( project ){ git_reset = git_take +" reset --hard " @@ -23,7 +19,7 @@ def git_take( projects ){ } git_take = git_take +"-C "+project+" pull" }else{ - git_take = git_take +"clone "+ "https://artikus.dynu.net:7990/r/"+project+".git" + git_take = git_take +"clone "+ "https://git.arti24.eu/gitea"+project+".git" } sh( git_take ) dir( project ){