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.
20 lines
348 B
20 lines
348 B
#!/bin/sh |
|
|
|
# Copyright The OpenTelemetry Authors |
|
# SPDX-License-Identifier: Apache-2.0 |
|
set -e |
|
|
|
if [ "format" = "$1" ]; then |
|
if [ -z "$2" ]; then |
|
echo Please specify file name. |
|
exit |
|
fi |
|
|
|
if [ -f "$2" ]; then |
|
FILEPATH=$2 |
|
else |
|
FILEPATH=${GIT_PREFIX}$2 |
|
fi |
|
echo Formatting $FILEPATH |
|
clang-format -style=file -i $FILEPATH |
|
fi
|
|
|