Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
clippy 0.0.203 - Docs.rs
[go: Go Back, main page]

clippy 0.0.203

A bunch of helpful lints to avoid common pitfalls in Rust
set -x
cargo install --force

echo "Running integration test for crate ${INTEGRATION}"

git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
cd checkout

function check() {
  RUST_BACKTRACE=full cargo clippy --all &> clippy_output
  cat clippy_output
  ! cat clippy_output | grep -q "internal compiler error"
  if [[ $? != 0 ]]; then
    return 1
  fi
}

case ${INTEGRATION} in
  rust-lang/cargo)
    check
    ;;
  *)
    check
    ;;
esac