Skip to content

Commit

Permalink
[rs] consistentify build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
shish committed Sep 30, 2023
1 parent 30928b9 commit 07e14fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rs/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -eu

cd $(dirname $0)
cargo build --release
cp target/release/rosettaboy-rs ./rosettaboy-release
cp ./target/release/rosettaboy-rs ./rosettaboy-release
2 changes: 1 addition & 1 deletion rs/build_debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -eu

cd $(dirname $0)
cargo build
cp target/debug/rosettaboy-rs ./rosettaboy-debug
cp ./target/debug/rosettaboy-rs ./rosettaboy-debug
2 changes: 1 addition & 1 deletion rs/build_lto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ set -eu

cd $(dirname $0)
cargo build --profile release-lto
mv ./target/release-lto/rosettaboy-rs ./rosettaboy-lto
cp ./target/release-lto/rosettaboy-rs ./rosettaboy-lto

0 comments on commit 07e14fe

Please sign in to comment.