osupdater/rust_build_osupdater.sh

11 lines
270 B
Bash
Raw Permalink Normal View History

2024-03-09 18:03:54 -06:00
#!/bin/sh
echo -e "Cleaning up build environment"
rm -rf osupdater/target
echo -e "Entering build directory\n"
cd osupdater/
echo -e "Building osupdater\n"
cargo build -r --jobs $(nproc)
2024-06-12 20:29:56 -05:00
#echo -e "Copying binary to git root\n"
#cp target/release/osupdater ../osupdater
2024-03-09 18:03:54 -06:00