Newer
Older
Tardis / scripts / check.sh
@Jookia Jookia 18 days ago 279 bytes Bump copyright year
#!/bin/bash
# SPDX-License-Identifier: MIT
# Copyright (c) 2024 John Watts and the LuminaSensum contributors

set -e
find src include lang \
	\( -name "CMakeFiles" -prune \) -o \
	\( -name "mini-gmp" -prune \) -o \
	\( -regex '.*\.\(c\|cpp\|h\)' -exec clang-format -i "{}" \; \)