forked from MightyPork/crsn
9 lines
142 B
Bash
Executable File
9 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cargo build --release --bin launcher
|
|
cp target/release/launcher ./out/crsn
|
|
|
|
echo "Target built and copied to ./out/crsn"
|