We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49d3f0c commit e2c7235Copy full SHA for e2c7235
ci/scripts/bump-and-tag.bash
@@ -39,7 +39,7 @@ git commit version.txt zenoh-jni/Cargo.toml -m "chore: Bump version to $version"
39
40
# Select all package dependencies that match $bump_deps_pattern and bump them to $bump_deps_version
41
if [[ "$bump_deps_pattern" != '' ]]; then
42
- deps=$(toml get zenoh-jni/Cargo.toml dependencies | jq -r "keys.[] | select(test(\"$bump_deps_pattern\"))")
+ deps=$(toml get zenoh-jni/Cargo.toml dependencies | jq -r "keys[] | select(test(\"$bump_deps_pattern\"))")
43
for dep in $deps; do
44
if [[ -n $bump_deps_version ]]; then
45
toml_set_in_place zenoh-jni/Cargo.toml "dependencies.$dep.version" "$bump_deps_version"
0 commit comments