Parcourir la source

Обновить 'Jenkins/jenkinsfile'

vmshay il y a 5 ans
Parent
commit
50d668ddc9
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      Jenkins/jenkinsfile

+ 2 - 1
Jenkins/jenkinsfile

@@ -7,7 +7,8 @@ def GetLog(build_url) {
 		url: build_url + 'consoleText',
 		customHeaders:[[name:'Authorization', value:"Basic ${auth}"]],
 		validResponceCodes: '200')
-		return responce
+		def ctx = response.content
+		return ctx
 	}
 }