From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1428725-garchives=archives.gentoo.org@lists.gentoo.org>
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 0CD7A158095
	for <garchives@archives.gentoo.org>; Thu, 18 Aug 2022 18:41:45 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4BB02E07E6;
	Thu, 18 Aug 2022 18:41:44 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(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 27A85E07E6
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Aug 2022 18:41:44 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(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 E6747340FD2
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Aug 2022 18:41:42 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E11F56C
	for <gentoo-commits@lists.gentoo.org>; Thu, 18 Aug 2022 18:41:41 +0000 (UTC)
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" <arthurzam@gentoo.org>
Message-ID: <1660848094.37303b6fef6a12e684af718014b175897fab75e9.arthurzam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vscode/
X-VCS-Repository: repo/gentoo
X-VCS-Files: app-editors/vscode/vscode-1.70.0-r1.ebuild app-editors/vscode/vscode-1.70.1-r1.ebuild
X-VCS-Directories: app-editors/vscode/
X-VCS-Committer: arthurzam
X-VCS-Committer-Name: Arthur Zamarin
X-VCS-Revision: 37303b6fef6a12e684af718014b175897fab75e9
X-VCS-Branch: master
Date: Thu, 18 Aug 2022 18:41:41 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 92b6d299-e738-48b1-a76e-abc577d39702
X-Archives-Hash: 44652dc740f0a7889da6bcf7e0a2d138

commit:     37303b6fef6a12e684af718014b175897fab75e9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 18 18:41:01 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Aug 18 18:41:34 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37303b6f

app-editors/vscode: fix sed

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-editors/vscode/vscode-1.70.0-r1.ebuild | 2 +-
 app-editors/vscode/vscode-1.70.1-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/vscode/vscode-1.70.0-r1.ebuild b/app-editors/vscode/vscode-1.70.0-r1.ebuild
index 00595b2ae2a7..5e6631dda24c 100644
--- a/app-editors/vscode/vscode-1.70.0-r1.ebuild
+++ b/app-editors/vscode/vscode-1.70.0-r1.ebuild
@@ -97,7 +97,7 @@ src_install() {
 	rm -r ./resources/app/LICENSES.chromium.html ./resources/app/LICENSE.rtf ./resources/app/licenses || die
 
 	# Disable update server
-	sed -i "/updateUrl/d" ${S}/resources/app/product.json || die
+	sed -e "/updateUrl/d" -i ./resources/app/product.json || die
 
 	# Install
 	pax-mark m code

diff --git a/app-editors/vscode/vscode-1.70.1-r1.ebuild b/app-editors/vscode/vscode-1.70.1-r1.ebuild
index 00595b2ae2a7..5e6631dda24c 100644
--- a/app-editors/vscode/vscode-1.70.1-r1.ebuild
+++ b/app-editors/vscode/vscode-1.70.1-r1.ebuild
@@ -97,7 +97,7 @@ src_install() {
 	rm -r ./resources/app/LICENSES.chromium.html ./resources/app/LICENSE.rtf ./resources/app/licenses || die
 
 	# Disable update server
-	sed -i "/updateUrl/d" ${S}/resources/app/product.json || die
+	sed -e "/updateUrl/d" -i ./resources/app/product.json || die
 
 	# Install
 	pax-mark m code