Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision a3f9946a125c228cd165b4d46f73bf6ac44bcc82)
+++ Jenkinsfile	(revision 63fe9f1dd58b1fa9bd1dfcb02d59d0c8d79b2c4f)
@@ -19,4 +19,7 @@
 node ('master'){
 	stage 'Build'
+
+	sh 'printenv'
+
 	//clean the repo and checkout the source code
 	checkout scm
@@ -43,4 +46,6 @@
 	Check console output at ${env.BUILD_URL} to view the results."""
 
+	def email_to = 'tdelisle@uwaterloo.ca'
+
 	//configure the conpilation
 	sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
@@ -50,9 +55,4 @@
 
 	//send email notification
-
-	def email_subject = email_subject_template
-	def email_body = email_body_template
-	def email_to = 'tdelisle@uwaterloo.ca'
-
 	emailext body: email_body, subject: email_subject, to: email_to, attachLog: true
  }
