#!/bin/bash set -e echo "Building deb-bootupd..." # Clean previous builds cargo clean # Build the project cargo build --release # Run tests cargo test # Check code quality cargo clippy cargo fmt --check echo "Build completed successfully!" echo "Binary location: target/release/bootupd"