Takuto Ikuta | 8bd36a2 | 2024-01-17 17:34:00 +0900 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | cd $(dirname $(dirname $0)) | ||||
4 | |||||
5 | ensure_file=$(mktemp) | ||||
6 | |||||
7 | # https://chrome-infra-packages.appspot.com/p/fuchsia/third_party/clang | ||||
8 | echo 'fuchsia/third_party/clang/${platform} integration' > $ensure_file | ||||
9 | cipd ensure -ensure-file $ensure_file -root clang | ||||
10 | |||||
11 | git ls-files | egrep '\.(h|cc)$' | fgrep -v 'third_party' |\ | ||||
12 | xargs ./clang/bin/clang-format -i |