Skip to content

Commit d417036

Browse files
committed
Skip marker in update_lockfiles.sh
1 parent ddc8d7a commit d417036

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/update_lockfiles.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,10 @@ WORKSPACE="$(realpath "$SCRIPTS"/..)"
1313

1414
cd "$WORKSPACE"
1515

16-
find . -name Cargo.toml -exec cargo update --workspace --manifest-path {} \;
16+
find . -name Cargo.toml |
17+
while read -r X; do
18+
if [[ "$X" = './examples/testing/marker/Cargo.toml' ]]; then
19+
continue
20+
fi
21+
cargo update --workspace --manifest-path "$X"
22+
done

0 commit comments

Comments
 (0)