From 4efa83de9303fbcbba7d6c1d96850a5408682038 Mon Sep 17 00:00:00 2001 From: Curt Hagenlocher Date: Sun, 14 Jan 2024 17:17:00 -0800 Subject: [PATCH 1/2] Fix verification script --- dev/release/verify-release-candidate.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index ab5c476768ed5..66e4f9b09db61 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -880,8 +880,8 @@ test_csharp() { if [ "${SOURCE_KIND}" = "local" ]; then echo "Skipping sourelink verification on local build" else - dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netstandard1.3/Apache.Arrow.pdb - dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netcoreapp3.1/Apache.Arrow.pdb + dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netstandard2.0/Apache.Arrow.pdb + dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/net6.0/Apache.Arrow.pdb fi popd From a1c02fcaaa931fa5181c2d7b298aee7268a1bc39 Mon Sep 17 00:00:00 2001 From: Curt Hagenlocher Date: Mon, 15 Jan 2024 05:36:40 -0800 Subject: [PATCH 2/2] fix typo --- dev/release/verify-release-candidate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh index 66e4f9b09db61..c5e27d083013e 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -878,7 +878,7 @@ test_csharp() { fi if [ "${SOURCE_KIND}" = "local" ]; then - echo "Skipping sourelink verification on local build" + echo "Skipping sourcelink verification on local build" else dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/netstandard2.0/Apache.Arrow.pdb dotnet tool run sourcelink test artifacts/Apache.Arrow/Release/net6.0/Apache.Arrow.pdb