fix: make build.sh compile release version

This commit is contained in:
Xory 2024-06-30 18:41:50 +03:00
parent 92697d8da7
commit d8b855a853

View file

@ -13,18 +13,18 @@ select opt in "${options[@]}"
do do
case $opt in case $opt in
"Windows") "Windows")
cargo build --bin solcrypt_main --target x86_64-pc-windows-gnu cargo build --bin solcrypt_main --target x86_64-pc-windows-gnu --release
cargo build --bin decryptor --target x86_64-pc-windows-gnu cargo build --bin decryptor --target x86_64-pc-windows-gnu --release
;; ;;
"Linux") "Linux")
cargo build --bin solcrypt_main --target x86_64-unknown-linux-gnu cargo build --bin solcrypt_main --target x86_64-unknown-linux-gnu --release
cargo build --bin decryptor --target x86_64-unknown-linux-gnu cargo build --bin decryptor --target x86_64-unknown-linux-gnu --release
;; ;;
"Both") "Both")
cargo build --bin solcrypt_main --target x86_64-pc-windows-gnu cargo build --bin solcrypt_main --target x86_64-pc-windows-gnu --release
cargo build --bin decryptor --target x86_64-pc-windows-gnu cargo build --bin decryptor --target x86_64-pc-windows-gnu --release
cargo build --bin solcrypt_main --target x86_64-unknown-linux-gnu cargo build --bin solcrypt_main --target x86_64-unknown-linux-gnu --release
cargo build --bin decryptor --target x86_64-unknown-linux-gnu cargo build --bin decryptor --target x86_64-unknown-linux-gnu --release
;; ;;
"Quit") "Quit")
mv src/crypto.rs.bak src/crypto.rs mv src/crypto.rs.bak src/crypto.rs