From f574f70c689a56b06b1f13119c49aa9a63529a23 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 3 Mar 2022 19:46:01 +0100 Subject: [PATCH] fix C# single-job distribtests jobs when version has no suffix (#28924) --- src/csharp/build_nuget.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/csharp/build_nuget.sh b/src/csharp/build_nuget.sh index 367320dccc085..5e8ea5b71b503 100755 --- a/src/csharp/build_nuget.sh +++ b/src/csharp/build_nuget.sh @@ -51,7 +51,7 @@ then # add a suffix to the nuget's version # to avoid confusing the package with a full nuget package. # NOTE: adding the suffix must be done AFTER expand_dev_version.sh has run. - sed -ibak "s/<\/GrpcCsharpVersion>/.singleplatform<\/GrpcCsharpVersion>/" build/dependencies.props + sed -ibak "s/<\/GrpcCsharpVersion>/-singleplatform<\/GrpcCsharpVersion>/" build/dependencies.props fi dotnet restore Grpc.sln