dir( project ){

sh( "git log -n 1");
            }
This commit is contained in:
Artur 2024-10-06 18:19:29 +02:00
parent d6bee1eb04
commit af19987704
1 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,12 @@ def git_take( projects ){
}else{ }else{
git_take = git_take +"clone "+ "https://artikus.dynu.net:7990/r/"+project+".git" 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");
}
} }
} }