Skip to content

Commit 8bd653f

Browse files
committed
update to fix def lacking in a variable
1 parent 3b726cd commit 8bd653f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/vectorcast/plugins/vectorcastexecution/job/NewPipelineJob.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,9 @@ private static Path createTempFile(final Path tempDirChild)
350350

351351
return tempDirChild.toAbsolutePath();
352352
} catch (IOException exception) {
353-
353+
354354
exception.printStackTrace();
355-
355+
356356
throw new UncheckedIOException("Failed to create temp file",
357357
exception);
358358
}
@@ -533,7 +533,7 @@ private String generateJenkinsfile() throws IOException {
533533
+ "def VC_Build_Preamble = \"" + preamble + "\"\n"
534534
+ "def VC_EnvTeardown = '''" + teardown + "'''\n"
535535
+ "def scmStep () { " + pipelineSCM + " }\n"
536-
+ "VC_usingSCM = "
536+
+ "def VC_usingSCM = "
537537
+ String.valueOf(pipelineSCM.length() != 0) + "\n"
538538
+ "def VC_postScmStepsCmds = '''" + postCheckoutCmds + "'''\n"
539539
+ "def VC_sharedArtifactDirectory = '''"

0 commit comments

Comments
 (0)