Forráskód Böngészése

.svn move to prevent it apperance in docker image

Vadim Surkov 6 éve
szülő
commit
155babb25d
1 módosított fájl, 2 hozzáadás és 0 törlés
  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'
       }
     }
   }