# HG changeset patch
# User Anton Shestakov <av6@dwimlabs.net>
# Date 1470913161 -28800
# Node ID 165e519bfa3dbd6936dfeaeff581985f532dac0c
# Parent  b99ebf84e2865186a9e080226ecca7dcf9a6ce6c
pipelines: yaml was getting confused by a ':' in the two messages, drop it

diff -r b99ebf84e286 -r 165e519bfa3d bitbucket-pipelines.yml
--- a/bitbucket-pipelines.yml	Thu Aug 11 18:48:44 2016 +0800
+++ b/bitbucket-pipelines.yml	Thu Aug 11 18:59:21 2016 +0800
@@ -23,3 +23,5 @@
           - ansible-playbook provision/playbook.yml
               -i inventory --connection=local --skip-tags=ufw
               | grep -q 'changed=0.*failed=0'
+              && { echo 'Idempotence test passed'; exit 0; }
+              || { echo 'Idempotence test failed'; exit 1; }