From effaac5c394137343a1d2e87429e68a7e88c2e07 Mon Sep 17 00:00:00 2001 From: Martin Grigorov Date: Wed, 3 Dec 2025 22:01:51 +0200 Subject: [PATCH] fix: Set the current folder as a "primary" for the `find` command (#2120) --- 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 089a6ffc..4e97c6e2 100755 --- a/dev/release/verify-release-candidate.sh +++ b/dev/release/verify-release-candidate.sh @@ -124,7 +124,7 @@ test_source_distribution() { cargo build cargo test --all-features - if ( find -iname 'Cargo.toml' | xargs grep SNAPSHOT ); then + if ( find . -iname 'Cargo.toml' | xargs grep SNAPSHOT ); then echo "Cargo.toml version should not contain SNAPSHOT for releases" exit 1 fi