https://gitlab.com/tezos/tezos
Raw File
Tip revision: d3832494db3bbab1fbd8139499d6c7047da0c304 authored by Charles Nguyen on 25 March 2024, 14:32:04 UTC
DAL: Enable metrics for filedescriptors
Tip revision: d383249
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