2022-11-08 19:07:16 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
source $(dirname $0)/env.sh
|
|
|
|
|
|
|
|
cd $LUNA_ROOT
|
|
|
|
|
2023-04-23 10:53:34 +02:00
|
|
|
source tools/sources.sh
|
2022-11-08 19:07:16 +01:00
|
|
|
|
|
|
|
for f in ${SOURCES[@]}
|
|
|
|
do
|
|
|
|
clang-format $f -i
|
2023-03-29 18:27:02 +02:00
|
|
|
done
|