Add missing " sign

This commit is contained in:
Arjen Hiemstra 2017-08-02 16:41:51 +02:00
parent 07ff4054e9
commit 7b3290213a

2
Jenkinsfile vendored
View file

@ -15,7 +15,7 @@ parallel_nodes(['linux && cura', 'windows && cura']) {
// Perform the "build". Since Uranium is Python code, this basically only ensures CMake is setup.
stage('Build') {
def branch = env.BRANCH_NAME
if(branch != "master" && !fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch})) {
if(!fileExists("${env.CURA_ENVIRONMENT_PATH}/${branch}")) {
branch = "master"
}