Cleaned up rust build script to be more default install friendly with echo rather than printf

This commit is contained in:
Andrew Schott 2024-03-09 18:35:01 -06:00
parent 8d8fadc364
commit 805dd5419d

View file

@ -1,8 +1,8 @@
#!/bin/sh
printf "Entering build directory\n"
echo -e "Entering build directory\n"
cd in_development/rust/osupdater/
printf "Building osupdater\n"
echo -e "Building osupdater\n"
cargo build -r
printf "Copying binary to git root\n"
echo -e "Copying binary to git root\n"
cp target/release/osupdater ../../../osupdater