Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 4f9e7067d839afcb07d468b81f768555cbfe0646)
+++ Jenkinsfile	(revision 952ee7a1c79b7c75cf690342f86d0fe477a41b31)
@@ -10,9 +10,8 @@
 //===========================================================================================================
 
-echo "Testing"
 
 // Globals
-BuildDir  = pwd tmp: true
-SrcDir    = pwd tmp: false
+BuildDir  = null
+SrcDir    = null
 Settings  = null
 StageName = ''
@@ -24,8 +23,11 @@
 def log_needed = false
 
+echo "Testing"
+
 try {
 	//Wrap build to add timestamp to command line
 	wrap([$class: 'TimestamperBuildWrapper']) {
 
+		echo "Testing 2"
 		Settings = prepare_build()
 
@@ -48,8 +50,4 @@
 			publish()
 		}
-
-		// Update the build directories when exiting the node
-		BuildDir  = pwd tmp: true
-		SrcDir    = pwd tmp: false
 	}
 }
