2024-03-09 18:03:54 -06:00
|
|
|
#!/bin/sh
|
2024-06-05 01:02:30 -05:00
|
|
|
echo -e "Cleaning up build environment"
|
|
|
|
rm -rf osupdater/target
|
2024-03-09 18:35:01 -06:00
|
|
|
echo -e "Entering build directory\n"
|
2024-06-05 01:02:30 -05:00
|
|
|
cd osupdater/
|
2024-03-09 18:35:01 -06:00
|
|
|
echo -e "Building osupdater\n"
|
2024-08-20 21:01:08 -05:00
|
|
|
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
|
|
|
|