We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f719f6 commit f470db7Copy full SHA for f470db7
src/test/java/org/jenkinsci/plugins/docker/workflow/WithContainerStepTest.java
@@ -118,7 +118,7 @@ public class WithContainerStepTest {
118
p.setDefinition(new CpsFlowDefinition(
119
"node {\n" +
120
" withDockerContainer('httpd:2.4.12') {\n" +
121
- " sh 'sleep 5; kill -9 `cat .*/pid`'\n" +
+ " sh \"sleep 5; kill -9 `cat ${pwd tmp: true}/*/pid`\"\n" +
122
" }\n" +
123
"}", true));
124
WorkflowRun b = story.j.assertBuildStatus(Result.FAILURE, p.scheduleBuild2(0).get());
0 commit comments