1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-20 05:19:40 +02:00

Fix name of credentials ID param (#1552)

This commit is contained in:
Stephan Aßmus 2020-05-14 19:17:47 +02:00 committed by GitHub
parent 0ce6473a98
commit 22fe087598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ import groovy.transform.Field
void call(Map parameters = [:]) {
List credentials = [
[type: 'usernamePassword', id: 'credentialsId', env: ['PIPER_username', 'PIPER_password']]
[type: 'usernamePassword', id: 'abapCredentialsId', env: ['PIPER_username', 'PIPER_password']]
]
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials, false, false, true)
}