Index: Jenkins/Distribute
===================================================================
--- Jenkins/Distribute	(revision c2f6b792d4f257273c2841c8939f5eaf5e20d7e0)
+++ Jenkins/Distribute	(revision 1dec8f3def813eae1ac5d6fa2a96547c643c1bdf)
@@ -21,5 +21,4 @@
 final commit, build
 node {
-
 	//Wrap build to add timestamp to command line
 	wrap([$class: 'TimestamperBuildWrapper']) {
@@ -35,15 +34,9 @@
 
 		Tools.Clean()
-
 		Tools.Checkout( commit )
-
 		Version = GetVersion( build )
-
 		Configure()
-
 		Package()
-
 		Test()
-
 		Archive()
 	}
@@ -64,5 +57,4 @@
 	echo "Build   Version: ${build}"
 	echo "Long    Version: ${version}"
-
 	return version
 }
@@ -119,23 +111,23 @@
 def prepare_build() {
 	// prepare the properties
-	properties ([ 													\
-		buildDiscarder(logRotator(										\
-			artifactDaysToKeepStr: '',									\
-			artifactNumToKeepStr: '',									\
-			daysToKeepStr: '730',										\
-			numToKeepStr: '1000'										\
-		)),														\
-		[$class: 'ParametersDefinitionProperty', 								\
-			parameterDefinitions: [ 									\
-				[$class: 'StringParameterDefinition',						\
-					description: 'The git commit to checkout',				\
-					name: 'GitRef',									\
-					defaultValue: '',  								\
-				],												\
-				[$class: 'StringParameterDefinition',						\
-					description: 'Build Number to put into the version',			\
-					name: 'Build',									\
-					defaultValue: '0',  								\
-				],												\
+	properties ([ 											\
+		buildDiscarder(logRotator(								\
+			artifactDaysToKeepStr: '',							\
+			artifactNumToKeepStr: '',							\
+			daysToKeepStr: '730',								\
+			numToKeepStr: '1000'								\
+		)),											\
+		[$class: 'ParametersDefinitionProperty', 						\
+			parameterDefinitions: [ 							\
+				[$class: 'StringParameterDefinition',					\
+					description: 'The git commit to checkout',			\
+					name: 'GitRef',							\
+					defaultValue: '',  						\
+				],									\
+				[$class: 'StringParameterDefinition',					\
+					description: 'Build Number to put into the version',		\
+					name: 'Build',							\
+					defaultValue: '0',  						\
+				],									\
 			],
 		]])
