Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions tools/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ $0 <version>

Bump Firecracker release version:
1. Updates Cargo.toml / Cargo.lock
2. Runs 'cargo update'
EOF
exit 1
fi
Expand Down Expand Up @@ -60,5 +59,5 @@ done
# NOTE: This will break if it finds paths with spaces in them
find . -path ./build -prune -o -name Cargo.lock -print |while read -r cargo_lock; do
say "Updating $cargo_lock ..."
(cd "$(dirname "$cargo_lock")"; cargo check; cargo update)
(cd "$(dirname "$cargo_lock")"; cargo check)
done
Loading