Revision c4d45253eb2f865732196f006b06f1420d1d32ae authored by Marge Bot on 08 January 2024, 11:50:51 UTC, committed by Marge Bot on 08 January 2024, 11:50:51 UTC
Co-authored-by: Pietro Abate <pietro.abate@nomadic-labs.com>

Approved-by: Arvid Jakobsson <arvid.jakobsson@nomadic-labs.com>
Approved-by: Nic Volanschi <nic.volanschi@nomadic-labs.com>
Approved-by: Emma Turner <1623821-emturner@users.noreply.gitlab.com>

See merge request https://gitlab.com/tezos/tezos/-/merge_requests/11418
2 parent s ba4cb99 + c90df00
Raw File
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