From de02fd677c5001b3d77f1a629ada3c1d6c879b28 Mon Sep 17 00:00:00 2001 From: Andrew Schott Date: Tue, 20 Aug 2024 21:01:08 -0500 Subject: [PATCH] added multithreading support to the buildscript --- rust_build_osupdater.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust_build_osupdater.sh b/rust_build_osupdater.sh index 01fa8dc..8f3fe2d 100755 --- a/rust_build_osupdater.sh +++ b/rust_build_osupdater.sh @@ -4,7 +4,7 @@ rm -rf osupdater/target echo -e "Entering build directory\n" cd osupdater/ echo -e "Building osupdater\n" -cargo build -r +cargo build -r --jobs $(nproc) #echo -e "Copying binary to git root\n" #cp target/release/osupdater ../osupdater