Vadim Surkov 7 years ago
parent
commit
0123711104
1 changed files with 6 additions and 6 deletions
  1. 6 6
      Jenkinsfile

+ 6 - 6
Jenkinsfile

@@ -23,22 +23,22 @@ pipeline {
     }
     post {
       always {
-        echo 'It's always goot to be here.'
+        echo "It's always good to be here."
       }
       changed {
-        echo 'Something changed...'
+        echo "Something changed..."
       }
       failure {
-        echo 'Oh, snap. It's failed again'
+        echo "Oh, snap. It's failed again"
       }
       success {
-        echo 'Fine !!! It's SUCCESS !!!'
+        echo "Fine !!! It's SUCCESS !!!"
       }
       unstable {
-        echo 'Unstable ....'
+        echo "Unstable ...."
       }
       aborted {
-        echo 'Hmmm... It's aborted'
+        echo "Hmmm... It's aborted"
       }
   }
 }