We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
marker
1 parent ddc8d7a commit d417036Copy full SHA for d417036
scripts/update_lockfiles.sh
@@ -13,4 +13,10 @@ WORKSPACE="$(realpath "$SCRIPTS"/..)"
13
14
cd "$WORKSPACE"
15
16
-find . -name Cargo.toml -exec cargo update --workspace --manifest-path {} \;
+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