diff --git a/deploy-this/update-from-git.jenkinsfile b/deploy-this/update-from-git.jenkinsfile index 9cb3512..f9f2d2c 100644 --- a/deploy-this/update-from-git.jenkinsfile +++ b/deploy-this/update-from-git.jenkinsfile @@ -18,7 +18,12 @@ def git_take( projects ){ }else{ git_take = git_take +"clone "+ "https://artikus.dynu.net:7990/r/"+project+".git" } - sh( git_take ) + sh( git_take ) + dir( project ){ + sh( "git log -n 1"); + } + + } }