Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision ed091cd766b927eacd18109608cfacc9d0905b53)
+++ Jenkinsfile	(revision 1e3465391afc0ea4bd43f5e06fc48a6628848674)
@@ -5,5 +5,5 @@
 node {
 	checkout scm
-	sh 'git clean -f'
+	sh 'git clean -dfq'
 }
 
@@ -13,16 +13,15 @@
 	//configure the conpilation
 	try {
-		sh 'git clean -dfq'
 		sh 'make maintainer-clean > /dev/null'
 		sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null'
 		sh 'make -j 8'
-		email("SUCCESS")
+		email("SUCCESS", false)
 	} catch (Exception e) {
-		email("FAILURE")
+		email("FAILURE", true)
 		throw e;
 	}
 }
 
-def email(String status) {
+def email(String status, Bool log) {
 	//Since tokenizer doesn't work, figure stuff out from the environnement variables and command line
 	//Configurations for email format
@@ -37,8 +36,4 @@
 	The branch ${env.BRANCH_NAME} has been updated.
 
-	Those revisions listed above that are new to this repository have
-	not appeared on any other notification email; so we list those
-	revisions in full, below.
-
 	Check console output at ${env.BUILD_URL} to view the results."""
 
@@ -46,4 +41,4 @@
 
 	//send email notification
-	emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
+	emailext body: email_body, subject: email_subject, to: email_to, attachLog: log
 }
