Jenkinsfile: This is Windows, not Linux.

This commit is contained in:
/dev/urandom 2016-09-13 03:00:17 +02:00
parent 65a10144a7
commit ee936a9a3a
No known key found for this signature in database
GPG Key ID: 41322B973E0F295E

2
Jenkinsfile vendored
View File

@ -105,7 +105,7 @@ stage "Versioning"
node("windows") {
checkout scm
version = sh(returnStdout: true, script: 'premake5 version').split("\r?\n")[1]
version = bat(returnStdout: true, script: 'premake5 version').split("\r?\n")[1]
currentBuild.setDisplayName "$version (#${env.BUILD_NUMBER})"
}