https://gitlab.com/tezos/tezos
Raw File
Tip revision: 4340b1cc481af2f8e8b7d2cc17be62be111748cc authored by Thomas Letan on 19 January 2024, 18:52:48 UTC
Sequencer: Call Wasmer directly
Tip revision: 4340b1c
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