This commit is contained in:
vbawol 2017-04-06 16:51:41 -05:00 committed by GitHub
parent d28d430a95
commit 718c886f9c

8
Jenkinsfile vendored
View File

@ -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'
}
}