| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #!/usr/bin/env bash
- #
- # Copyright (c) 2020 Project CHIP Authors
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- # Use git and restyle-path to help reformat anything that differs from
- # some base edit point. Use before pushing a PR to make sure everything
- # you've written is kosher to CI
- #
- # Usage:
- # restyle-diff.sh [ref]
- #
- # if unspecified, ref defaults to upstream/master (or master)
- #
- here=${0%/*}
- set -e
- CHIP_ROOT=$(cd "$here/../.." && pwd)
- cd "$CHIP_ROOT"
- restyle-paths() {
- if hash restyle-path 2>/dev/null; then
- echo "$@" | xargs restyle-path
- else
- url=https://github.com/restyled-io/restyler/raw/main/bin/restyle-path
- echo "$@" | xargs sh <(curl --location --proto "=https" --tlsv1.2 "$url" -sSf)
- fi
- }
- ref="$1"
- if [[ -z "$ref" ]]; then
- ref="master"
- git remote | grep -qxF upstream && ref="upstream/master"
- fi
- declare -a paths=("$(git diff --ignore-submodules --name-only --merge-base "$ref")")
- restyle-paths "${paths[@]}"
|