10 lines
220 B
Bash
10 lines
220 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#cargo build --target x86_64-unknown-linux-musl --release
|
||
|
cargo build
|
||
|
|
||
|
mkdir -p ../bin
|
||
|
|
||
|
#cp ./target/x86_64-unknown-linux-musl/release/usdpl-decky ../bin/backend
|
||
|
cp ./target/debug/usdpl-decky ../bin/backend
|