Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 80FA211316 for ; Fri, 8 Aug 2014 13:52:39 +0000 (UTC) Received: (qmail 49980 invoked by uid 500); 8 Aug 2014 13:52:39 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 49952 invoked by uid 500); 8 Aug 2014 13:52:39 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 49943 invoked by uid 99); 8 Aug 2014 13:52:39 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Aug 2014 13:52:39 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0104594CC59; Fri, 8 Aug 2014 13:52:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bhaisaab@apache.org To: commits@cloudstack.apache.org Message-Id: <78b8196d700d4cc389cc4fc523f6cad7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 2491630 Date: Fri, 8 Aug 2014 13:52:38 +0000 (UTC) Repository: cloudstack Updated Branches: refs/heads/master a0006a699 -> 2491630f5 git: don't let db-police hook fail for no changes in setup/db Signed-off-by: Rohit Yadav Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2491630f Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2491630f Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2491630f Branch: refs/heads/master Commit: 2491630f51270af62043fbfe76c928cd326879ee Parents: a0006a6 Author: Rohit Yadav Authored: Fri Aug 8 15:52:07 2014 +0200 Committer: Rohit Yadav Committed: Fri Aug 8 15:52:07 2014 +0200 ---------------------------------------------------------------------- tools/git/db-police | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/2491630f/tools/git/db-police ---------------------------------------------------------------------- diff --git a/tools/git/db-police b/tools/git/db-police index c2fd8ce..fd52ef7 100755 --- a/tools/git/db-police +++ b/tools/git/db-police @@ -42,7 +42,7 @@ check_changes() { alert_command="command -v festival && $(echo '$1' | festival --tts)" fi - echo "$changed_files" | grep --quiet "setup/db" && eval $alert_command + echo "$changed_files" | (grep --quiet "setup/db" && eval $alert_command) || true } check_changes "Alert, somebody changed CloudStack schemas"