Revision aeace864013c7fb35ec56435f87da18ebe84d417 authored by Nic Volanschi on 04 January 2024, 17:02:44 UTC, committed by Marge Bot on 08 January 2024, 09:11:50 UTC
1 parent 3d52481
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