Skip to content

Commit

Permalink
Skip marker in update_lockfiles.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
smoelius committed Dec 15, 2024
1 parent c93e4eb commit 7cbaa14
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/update_lockfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,10 @@ WORKSPACE="$(realpath "$SCRIPTS"/..)"

cd "$WORKSPACE"

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

0 comments on commit 7cbaa14

Please sign in to comment.