From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D39431382C5 for ; Tue, 8 Dec 2020 05:53:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40A3FE0885; Tue, 8 Dec 2020 05:53:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 268B2E0885 for ; Tue, 8 Dec 2020 05:53:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04E10340EE5 for ; Tue, 8 Dec 2020 05:53:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A97652C5 for ; Tue, 8 Dec 2020 05:53:22 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1607406790.e14d3c85a8ff068849f209b25351af96f995df79.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/wcmatch/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/wcmatch/wcmatch-7.1.ebuild X-VCS-Directories: dev-python/wcmatch/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: e14d3c85a8ff068849f209b25351af96f995df79 X-VCS-Branch: master Date: Tue, 8 Dec 2020 05:53:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 45ff971c-4def-4d25-8bac-9c17a5802337 X-Archives-Hash: 63285b327ffb7f54fe82386e780ce700 commit: e14d3c85a8ff068849f209b25351af96f995df79 Author: Joonas Niilola gentoo org> AuthorDate: Tue Dec 8 05:50:55 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Dec 8 05:53:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e14d3c85 dev-python/wcmatch: add missing dies Signed-off-by: Joonas Niilola gentoo.org> dev-python/wcmatch/wcmatch-7.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/wcmatch/wcmatch-7.1.ebuild b/dev-python/wcmatch/wcmatch-7.1.ebuild index 2b77ed17b04..4fc94a4a472 100644 --- a/dev-python/wcmatch/wcmatch-7.1.ebuild +++ b/dev-python/wcmatch/wcmatch-7.1.ebuild @@ -45,11 +45,11 @@ python_prepare_all() { # mkdocs-git-revision-date-localized-plugin needs git repo if use doc; then - git init + git init || die git config --global user.email "you@example.com" || die git config --global user.name "Your Name" || die - git add . - git commit -m 'init' + git add . || die + git commit -m 'init' || die fi distutils-r1_python_prepare_all