9 lines
195 B
Bash
Executable File
9 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
export RUSTFLAGS='-C target-feature=+crt-static'
|
|
cargo build --release --target x86_64-unknown-linux-gnu
|
|
mkdir -p bin
|
|
cp target/x86_64-unknown-linux-gnu/release/keep ./bin/
|