From 9d0bac3e086515c1a3850b2a767ac3a5c249bf87 Mon Sep 17 00:00:00 2001 From: stack72 Date: Wed, 6 Jan 2021 20:13:34 +0000 Subject: [PATCH] fixing the install of the DotNet SDK --- sdk/dotnet/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/dotnet/Makefile b/sdk/dotnet/Makefile index e1902e57b..0894df46b 100644 --- a/sdk/dotnet/Makefile +++ b/sdk/dotnet/Makefile @@ -46,7 +46,7 @@ install:: build install_plugin echo "Copying NuGet packages to ${PULUMI_NUGET}" [ ! -e "$(PULUMI_NUGET)" ] || rm -rf "$(PULUMI_NUGET)/*" rm -f $(PULUMI_NUGET)/*.nupkg - find . -name '*${VERSION_PREFIX}-*.nupkg' -exec cp -p {} ${PULUMI_NUGET} \; + find . -name '*${VERSION_PREFIX}*.nupkg' -exec cp -p {} ${PULUMI_NUGET} \; dotnet_test:: install # include the version prefix/suffix to avoid generating a separate nupkg file