https://gitlab.com/tezos/tezos
Raw File
Tip revision: 7a8188f22380d1094b8178a6fe17ae7bf41d1140 authored by Thomas Letan on 08 March 2024, 14:33:19 UTC
EVM Kernel: Update the governance contracts for the testnet
Tip revision: 7a8188f
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