From 805dd5419d28441be8611eb36a0abc55092c6c81 Mon Sep 17 00:00:00 2001 From: Andrew Schott Date: Sat, 9 Mar 2024 18:35:01 -0600 Subject: [PATCH] Cleaned up rust build script to be more default install friendly with echo rather than printf --- rustbuild.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rustbuild.sh b/rustbuild.sh index 7f8224c..c13b8e1 100755 --- a/rustbuild.sh +++ b/rustbuild.sh @@ -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