fix(pipeline): remove redundant 'steps.' prefix from log statement in executeFreeleapsPipeline

Signed-off-by: 孙振宇 <>
This commit is contained in:
孙振宇 2025-02-08 11:47:29 +08:00
parent 818e4670b8
commit cf209c4cc3

View File

@ -319,7 +319,7 @@ def generateComponentStages(component, configurations) {
sh component.buildCommand
}
component.buildArtifacts.each { artifact ->
steps.log.info("Pipeline", "Stashing artifact ${artifact} for ${component.name}...")
log.info("Pipeline", "Stashing artifact ${artifact} for ${component.name}...")
def targetPathType = sh(
script: """
if [ -d "${artifact}" ]; then