2024-03-09 18:03:54 -06:00
|
|
|
#!/bin/sh
|
2024-03-09 18:35:01 -06:00
|
|
|
echo -e "Entering build directory\n"
|
2024-03-09 18:03:54 -06:00
|
|
|
cd in_development/rust/osupdater/
|
2024-03-09 18:35:01 -06:00
|
|
|
echo -e "Building osupdater\n"
|
2024-03-09 18:03:54 -06:00
|
|
|
cargo build -r
|
2024-03-09 18:35:01 -06:00
|
|
|
echo -e "Copying binary to git root\n"
|
2024-03-09 18:03:54 -06:00
|
|
|
cp target/release/osupdater ../../../osupdater
|
|
|
|
|