From 718c886f9c91f3e774f1124f3f8a319c3cb64a14 Mon Sep 17 00:00:00 2001 From: vbawol Date: Thu, 6 Apr 2017 16:51:41 -0500 Subject: [PATCH] test --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index eaea7310..e2351757 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -5,10 +5,10 @@ pipeline { steps { node (label: 'testing') { checkout scm - fileExists 'README.md' - fileExists 'version.txt' - fileExists 'build.txt' - fileExists 'nonexistentFile.txt' + fileExists ('README.md') + fileExists ('version.txt') + fileExists ('build.txt') + fileExists ('nonexistentFile.txt') bat 'C:/GITTEMP/build.cmd' } }