Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ovcharenko-di committed Dec 15, 2024
1 parent c01f42d commit 25dc5e4
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 {

def executable_name = getExecutableName(executable)
if (steps.isUnix()) {
steps.sh("$executable $params > \"./build/${env.STAGE_NAME}-start-${executable_name}.log 2>&1 &", false, false , encoding)
steps.sh("$executable $params > \"./build/${env.STAGE_NAME}-start-${executable_name}.log\" 2>&1 &", false, false , encoding)
} else {
steps.bat("chcp 65001 > nul \nstart \"\" /B \"$executable\" $params > \"./build/${env.STAGE_NAME}-start-${executable_name}.log\" 2>&1", false, false, encoding)
}
Expand Down

0 comments on commit 25dc5e4

Please sign in to comment.