From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 3BBCC59CA5 for ; Tue, 22 Mar 2016 16:47:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3108F21C004; Tue, 22 Mar 2016 16:46:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB84B21C004 for ; Tue, 22 Mar 2016 16:46:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58BE6340C21 for ; Tue, 22 Mar 2016 16:46:54 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A833846 for ; Tue, 22 Mar 2016 16:46:49 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1458665196.fdc39e249cfe9dc956ebd3f04f33a1f5636548f8.vapier@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto X-VCS-Directories: tools/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: fdc39e249cfe9dc956ebd3f04f33a1f5636548f8 X-VCS-Branch: master Date: Tue, 22 Mar 2016 16:46:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 79e76cf1-756a-4c3c-bc00-15a54f5af7c9 X-Archives-Hash: 2d5b688d1e2020a945496131e456ae53 commit: fdc39e249cfe9dc956ebd3f04f33a1f5636548f8 Author: Mike Frysinger gentoo org> AuthorDate: Tue Mar 22 16:46:36 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Mar 22 16:46:36 2016 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=fdc39e24 catalyst-auto: minor word smithing tools/catalyst-auto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/catalyst-auto b/tools/catalyst-auto index f20aa1d..0b1c389 100755 --- a/tools/catalyst-auto +++ b/tools/catalyst-auto @@ -187,7 +187,7 @@ if ! mkdir -p "${TMPDIR}"/{specs,kconfig,log}; then fi if ! run_cmd "pre_build" "${TMPDIR}/log/pre_build.log"; then - send_email "Catalyst build error - pre_build" "Your pre_build function sucks" "${TMPDIR}/log/pre_build.log" + send_email "Catalyst build error - pre_build" "The pre_build function failed" "${TMPDIR}/log/pre_build.log" exit 1 fi @@ -309,7 +309,7 @@ for a in "" ${SETS}; do done if ! run_cmd "post_build" "${TMPDIR}/log/post_build.log"; then - send_email "Catalyst build error - post_build" "Your post_build function sucks" "${TMPDIR}/log/post_build.log" + send_email "Catalyst build error - post_build" "The post_build function failed" "${TMPDIR}/log/post_build.log" exit 1 fi