00fdfaf11c
It doesn't do anything and will be removed in a future rustc version. Usage was already removed from the Makefile previously.
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export RUST_TARGET_PATH="${PWD}/targets"
|
|
export RUSTFLAGS="-C debuginfo=2"
|
|
cargo clippy --lib --release --target x86_64-unknown-none "$@"
|