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
6 changes: 6 additions & 0 deletions scripts/bootstrap_native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ else
export GIT_COMMIT=$(git rev-parse --verify HEAD)
fi

# Check if the 'cargo' command is available in the system
if ! command -v cargo > /dev/null; then
echo "Cargo is not installed. Please install Cargo and the Rust toolchain."
exit 1
fi

# Build native.
if [ -n "${DEBUG:-}" ]; then
cargo build
Expand Down