From 7b3290213a976e6a86e1832143520f09632fe4d8 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Wed, 2 Aug 2017 16:41:51 +0200 Subject: [PATCH] Add missing " sign --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f7c43dd8bd..6ff63e2772 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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" }