Index: Jenkins/FullBuild
===================================================================
--- Jenkins/FullBuild	(revision ad5b73e4e493417a0f76cd897d7e6a78a7165fa8)
+++ Jenkins/FullBuild	(revision 121f49961f461f8b5602983db918001ce392f6d8)
@@ -28,4 +28,5 @@
 // Main loop of the compilation
 //===========================================================================================================
+
 node ('master') {
 	try {
@@ -71,5 +72,5 @@
 
 						if (result.result != 'SUCCESS') {
-							echo( 'Build Succeded' )
+							echo( 'Build Succede' )
 						}
 					}
@@ -80,25 +81,25 @@
 		}
 	}
-}
-//If an exception is caught we need to change the status and remember to
-//attach the build log to the email
-catch (Exception caughtError) {
-	//rethrow error later
-	err = caughtError
 
-	//Store the result of the build log
-	currentBuild.result = "${status_prefix} FAILURE".trim()
+	//If an exception is caught we need to change the status and remember to
+	//attach the build log to the email
+	catch (Exception caughtError) {
+		//rethrow error later
+		err = caughtError
 
-	//Send email to notify the failure
-	promote_email(currentBuild.result)
-}
+		//Store the result of the build log
+		currentBuild.result = "${status_prefix} FAILURE".trim()
 
-finally {
-	//Must re-throw exception to propagate error
-	if (err) {
-		throw err
+		//Send email to notify the failure
+		promote_email(currentBuild.result)
+	}
+
+	finally {
+		//Must re-throw exception to propagate error
+		if (err) {
+			throw err
+		}
 	}
 }
-
 //===========================================================================================================
 //Routine responsible of sending the email notification once the build is completed
