mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
9 years ago
|
#!/bin/bash
|
||
8 years ago
|
# Copyright 2015 gRPC authors.
|
||
9 years ago
|
#
|
||
8 years ago
|
# 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
|
||
9 years ago
|
#
|
||
8 years ago
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||
9 years ago
|
#
|
||
8 years ago
|
# 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.
|
||
9 years ago
|
|
||
|
set -ex
|
||
|
|
||
1 year ago
|
ACTION="${1:-}"
|
||
|
[[ $ACTION == '' ]] || [[ $ACTION == '--diff' ]] || [[ $ACTION == '--check' ]]
|
||
5 years ago
|
|
||
9 years ago
|
# change to root directory
|
||
8 years ago
|
cd "$(dirname "${0}")/../.."
|
||
9 years ago
|
|
||
8 years ago
|
DIRS=(
|
||
5 years ago
|
'examples'
|
||
|
'src'
|
||
|
'test'
|
||
7 years ago
|
'tools'
|
||
5 years ago
|
'setup.py'
|
||
8 years ago
|
)
|
||
9 years ago
|
|
||
1 year ago
|
VIRTUALENV=black_virtual_environment
|
||
9 years ago
|
|
||
5 years ago
|
python3 -m virtualenv $VIRTUALENV -p $(which python3)
|
||
7 years ago
|
PYTHON=${VIRTUALENV}/bin/python
|
||
1 year ago
|
"$PYTHON" -m pip install black==23.3.0
|
||
9 years ago
|
|
||
1 year ago
|
$PYTHON -m black --config=black.toml $ACTION "${DIRS[@]}"
|