https://gitlab.com/tezos/tezos
Raw File
Tip revision: 7c5bee500d29477dc72f2fc0cfaa29994af9584f authored by Thomas Letan on 21 February 2024, 08:58:14 UTC
Etherlink: Fix admin contract change in reveal_storage
Tip revision: 7c5bee5
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