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 3FC0C1382C5 for ; Tue, 8 Dec 2020 05:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4FEEE0886; 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 CAAB2E088A for ; Tue, 8 Dec 2020 05:53:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C010D340ECC for ; Tue, 8 Dec 2020 05:53:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7EF04495 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: <1607406789.3e76cbb58d716c0b3f2ca85cd7e3215068680941.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pymdown-extensions/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild X-VCS-Directories: dev-python/pymdown-extensions/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 3e76cbb58d716c0b3f2ca85cd7e3215068680941 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: fffb9946-9122-403d-aaba-7ad4639dc4df X-Archives-Hash: 9336eb13621d5cf4073d27c38cf963ae commit: 3e76cbb58d716c0b3f2ca85cd7e3215068680941 Author: Joonas Niilola gentoo org> AuthorDate: Tue Dec 8 05:49:58 2020 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Dec 8 05:53:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e76cbb5 dev-python/pymdown-extensions: add missing dies Signed-off-by: Joonas Niilola gentoo.org> dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild b/dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild index f13a1d92a27..bb8e5e1c5ca 100644 --- a/dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild +++ b/dev-python/pymdown-extensions/pymdown-extensions-8.0.1.ebuild @@ -53,11 +53,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