瀏覽代碼

.svn move to prevent it apperance in docker image

Vadim Surkov 6 年之前
父節點
當前提交
155babb25d
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      Jenkinsfile

+ 2 - 0
Jenkinsfile

@@ -21,7 +21,9 @@ pipeline {
     stage("Build docker image") {
       steps {
         bat 'svn.exe checkout svn://192.168.21.250/programs/trunk/Services/Analis/Win64 Infoclinica --username public --password "sds#7753435"'
+		powershell 'move-Item -Path .\Infoclinica\.svn -Destination .\svn'
         bat "docker build --no-cache -t analis-service:${BUILD_NUMBER} ."
+		powershell 'move-Item -Path .\svn -Destination .\Infoclinica\.svn'
       }
     }
   }