https://gitlab.com/tezos/tezos
Raw File
Tip revision: 1dd2728a449aa73cf8939a5f3cd23d453c99171f authored by Antonio Locascio on 07 February 2024, 13:05:54 UTC
wip
Tip revision: 1dd2728
check-format-rust.sh
#!/bin/sh

set -e

# shellcheck disable=SC2016
git ls-files -z '**/Cargo.lock' ':!:contrib' |
  xargs -0 -I{} sh -c 'cd $(dirname {}) && cargo fmt --check'
back to top