11 lines
355 B
Bash
Executable file
11 lines
355 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#cargo build --release --target x86_64-unknown-linux-musl
|
|
cargo build --target x86_64-unknown-linux-musl
|
|
#cross build --release
|
|
|
|
mkdir -p ../bin
|
|
#cp ./target/x86_64-unknown-linux-musl/release/fantastic-rs ../bin/backend
|
|
cp ./target/x86_64-unknown-linux-musl/debug/fantastic-rs ../bin/backend
|
|
#cp ./target/release/fantastic-rs ../bin/backend
|
|
|