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