1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-08-25 20:09:25 +02:00

fix start step

This commit is contained in:
Dima
2024-12-12 09:15:23 +03:00
parent 7f4b7fae69
commit bbd5238277
5 changed files with 14 additions and 12 deletions

View File

@@ -1,9 +1,9 @@
import ru.pulsar.jenkins.library.steps.Start
import ru.pulsar.jenkins.library.ioc.ContextRegistry
void call(String script) {
void call(String executable, String params) {
ContextRegistry.registerDefaultContext(this)
Start start = new Start(script)
Start start = new Start(executable, params)
start.run()
}