Skip to content

Commit

Permalink
Обработка флага при сборке расширения
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovEV committed Jan 28, 2024
1 parent 3a016b6 commit 13d6761
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ru/pulsar/jenkins/library/steps/InitFromFiles.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class InitFromFiles implements Serializable {
if (config.initInfoBaseOptions.useIbcmd) {
initCommand += " --ibcmd"
}
VRunner.exec(initCommand)
List<String> logosConfig = ["LOGOS_CONFIG=$config.logosConfig"]
steps.withEnv(logosConfig) {
VRunner.exec(initCommand)
}
}
}

0 comments on commit 13d6761

Please sign in to comment.