6 lines
136 B
Bash
Executable file
6 lines
136 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cargo build --release
|
|
mkdir ../bin
|
|
# TODO replace "backend" \/ with binary name
|
|
cp ./target/release/backend ../bin/backend
|