https://gitlab.com/tezos/tezos
Raw File
Tip revision: 0f2ed93b4e11f369e4550045b0d6fec9cb966c20 authored by Arvid Jakobsson on 12 March 2024, 13:18:28 UTC
TMP try split
Tip revision: 0f2ed93
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