2020-06-12 18:32:13 +00:00
|
|
|
#!/usr/bin/env bash
|
2020-06-18 13:44:13 +00:00
|
|
|
|
2021-03-10 00:16:36 +00:00
|
|
|
CLANG_FORMAT_DESIRED_VERSION=11
|
|
|
|
|
|
|
|
binary=$(which clang-format-$CLANG_FORMAT_DESIRED_VERSION 2>/dev/null)
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
binary=$(which clang-format 2>/dev/null)
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "Please install clang-format version $CLANG_FORMAT_DESIRED_VERSION and re-run this script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
version=$(clang-format --version)
|
|
|
|
if [[ ! $version == *"clang-format version $CLANG_FORMAT_DESIRED_VERSION"* ]]; then
|
|
|
|
echo "Please install clang-format version $CLANG_FORMAT_DESIRED_VERSION and re-run this script."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-06-18 13:44:13 +00:00
|
|
|
# TODO: readlink -e is a GNU-ism
|
2020-06-12 18:32:13 +00:00
|
|
|
cd "$(readlink -e $(dirname $0)/../)"
|
2021-03-10 00:16:36 +00:00
|
|
|
$binary -i $(find jni daemon llarp include pybind | grep -E '\.[hc](pp)?$') &> /dev/null
|