Improved setting error messages to jenkins job descriptions

Change-Id: Ia19224b7334d6fd468ecc40be87d5b4df795adc5
diff --git a/validate-cloud.groovy b/validate-cloud.groovy
index ec3498a..f2720c1 100644
--- a/validate-cloud.groovy
+++ b/validate-cloud.groovy
@@ -91,7 +91,7 @@
     } catch (Throwable e) {
         // If there was an error or exception thrown, the build failed
         currentBuild.result = "FAILURE"
-        currentBuild.description = e.message
+        currentBuild.description = currentBuild.description ? e.message + " " + currentBuild.description : e.message
         throw e
     } finally {
         validate.runCleanup(saltMaster, TARGET_NODE, artifacts_dir)