Fixed jenkinsfile syntax error
diff --git a/Jenkinsfile b/Jenkinsfile
index 817a9d4..d8a93c7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -34,16 +34,16 @@
 		}
 		stage('Build') {
 			agent { label 'Windows' }
-			withEnv(["Path+NANT=$NANT_LATEST"]) {
-				steps {
+			steps {
+				withEnv(["Path+NANT=$NANT_LATEST"]) {
 					bat "NAnt.exe -buildfile:log4net.build"
 				}
 			}
 		}
 		stage('Test') {
 			agent { label 'Windows' }
-			withEnv(["Path+NANT=$NANT_LATEST"]) {
-				steps {
+			steps {
+				withEnv(["Path+NANT=$NANT_LATEST"]) {
 					bat "NAnt.exe -buildfile:tests\\nant.build"
 				}
 			}