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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C41C615800F for ; Fri, 20 Jan 2023 03:54:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C467DE0870; Fri, 20 Jan 2023 03:54:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AC4AAE0870 for ; Fri, 20 Jan 2023 03:54:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8D753340C96 for ; Fri, 20 Jan 2023 03:54:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0EAE882 for ; Fri, 20 Jan 2023 03:54:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1674186853.934f9bb0ec0eeb02aad6e0b0986f24b5a2f92d69.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/zig-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/zig-bin/zig-bin-0.10.0.ebuild dev-lang/zig-bin/zig-bin-0.10.1.ebuild X-VCS-Directories: dev-lang/zig-bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 934f9bb0ec0eeb02aad6e0b0986f24b5a2f92d69 X-VCS-Branch: master Date: Fri, 20 Jan 2023 03:54:30 +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: fee1097a-decf-4599-ac5c-19be72aff902 X-Archives-Hash: c905e439d88623aaa0abe72230a614db commit: 934f9bb0ec0eeb02aad6e0b0986f24b5a2f92d69 Author: Eric Joldasov getgoogleoff me> AuthorDate: Fri Jan 20 03:40:36 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 20 03:54:13 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=934f9bb0 dev-lang/zig-bin: add missing "die" Signed-off-by: Eric Joldasov getgoogleoff.me> Signed-off-by: Sam James gentoo.org> dev-lang/zig-bin/zig-bin-0.10.0.ebuild | 4 ++-- dev-lang/zig-bin/zig-bin-0.10.1.ebuild | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/zig-bin/zig-bin-0.10.0.ebuild b/dev-lang/zig-bin/zig-bin-0.10.0.ebuild index 45c577eadde5..41c7ad1570e5 100644 --- a/dev-lang/zig-bin/zig-bin-0.10.0.ebuild +++ b/dev-lang/zig-bin/zig-bin-0.10.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 2022-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -29,7 +29,7 @@ QA_PREBUILT="opt/${P}/zig" src_unpack() { unpack ${A} - mv "${WORKDIR}/"* "${S}" + mv "${WORKDIR}/"* "${S}" || die } src_install() { diff --git a/dev-lang/zig-bin/zig-bin-0.10.1.ebuild b/dev-lang/zig-bin/zig-bin-0.10.1.ebuild index 4a42bdced649..7c9d05764a48 100644 --- a/dev-lang/zig-bin/zig-bin-0.10.1.ebuild +++ b/dev-lang/zig-bin/zig-bin-0.10.1.ebuild @@ -29,7 +29,7 @@ QA_PREBUILT="opt/${P}/zig" src_unpack() { unpack ${A} - mv "${WORKDIR}/"* "${S}" + mv "${WORKDIR}/"* "${S}" || die } src_install() {