Jenkinsfile: attempt to build site now that we have the tools
diff --git a/Jenkinsfile b/Jenkinsfile
index 5eac750..9d8a31a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -49,7 +49,7 @@
 		stage('Build-Site') {
 			steps {
 				bat "set"
-				// bat "${NAnt} -buildfile:log4net.build generate-site"
+				bat "${NAnt} -buildfile:log4net.build generate-site"
 			}
 		}
 		stage('Deploy-Site') {
@@ -65,7 +65,7 @@
 		failure {
 			echo 'Failed build'
 			// TODO: send email as soon as the entire building is more stable
-			//step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'dev@logging.apache.org'])
+			//step([$class: 'Mailer', notifyEveryUnstableBuild: false, recipients: 'dev@logging.apache.org'])
 		}
 	}
 }