diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-01-01 20:09:08 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-01-01 21:29:37 +0100 |
commit | d5736f5c30d41ec87ebd4e7bc65d00f2f4954c7f (patch) | |
tree | d49f622f70e10e00975a957697fce151b6e80ec6 /dev-dotnet/omnisharp-roslyn | |
parent | gui-wm/sway: fix install locatation for the portals file (diff) | |
download | gentoo-d5736f5c30d41ec87ebd4e7bc65d00f2f4954c7f.tar.gz gentoo-d5736f5c30d41ec87ebd4e7bc65d00f2f4954c7f.tar.bz2 gentoo-d5736f5c30d41ec87ebd4e7bc65d00f2f4954c7f.zip |
dev-dotnet/omnisharp-roslyn: rmove nuget.config files with find
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-dotnet/omnisharp-roslyn')
-rw-r--r-- | dev-dotnet/omnisharp-roslyn/omnisharp-roslyn-1.39.11.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-dotnet/omnisharp-roslyn/omnisharp-roslyn-1.39.11.ebuild b/dev-dotnet/omnisharp-roslyn/omnisharp-roslyn-1.39.11.ebuild index 98081b313611..8c71a82fc655 100644 --- a/dev-dotnet/omnisharp-roslyn/omnisharp-roslyn-1.39.11.ebuild +++ b/dev-dotnet/omnisharp-roslyn/omnisharp-roslyn-1.39.11.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -347,7 +347,7 @@ src_prepare() { -e "/.*<RuntimeIdentifiers>.*/d" \ -e "/.*<RuntimeFrameworkVersion>.*/d" \ || die - rm NuGet.Config || die + find "${S}" -type f -iname nuget.config -exec rm -v {} + || die dotnet-pkg_src_prepare } |