lokinet/contrib/ci/drone-format-verify.sh

10 lines
416 B
Bash
Raw Normal View History

#!/usr/bin/env bash
test "x$IGNORE" != "x" && exit 0
2022-10-20 22:23:14 +00:00
. $(dirname $0)/../format-version.sh
repo=$(readlink -e $(dirname $0)/../../)
2022-10-20 22:23:14 +00:00
$CLANG_FORMAT -i $(find $repo/jni $repo/daemon $repo/llarp $repo/include $repo/pybind | grep -E '\.[hc](pp)?$')
jsonnetfmt -i $repo/.drone.jsonnet
git --no-pager diff --exit-code --color || (echo -ne '\n\n\e[31;1mLint check failed; please run ./contrib/format.sh\e[0m\n\n' ; exit 1)