Skip to content

Commit

Permalink
pass start params as is
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Dec 12, 2024
1 parent b44f4c6 commit e00e057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ru/pulsar/jenkins/library/steps/Start.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Start implements Serializable {
if (steps.isUnix()) {
steps.sh("$executable $params &", false, false , encoding)
} else {
steps.bat("chcp 65001 > nul \nstart \"\" /B \"$executable\" \"$params\"", false, false, encoding)
steps.bat("chcp 65001 > nul \nstart \"\" /B \"$executable\" $params", false, false, encoding)
}
}
}

0 comments on commit e00e057

Please sign in to comment.