apio
a164dcc160
All checks were successful
continuous-integration/drone/push Build is passing
libluna but for stuff that interests only userspace, like an argument parser or files or stuff like that.
18 lines
350 B
Bash
Executable File
18 lines
350 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
source $(dirname $0)/env.sh
|
|
|
|
cd $LUNA_ROOT
|
|
|
|
SOURCES=($(find kernel/src -type f | grep -v "\.asm"))
|
|
SOURCES+=($(find libluna/src -type f))
|
|
SOURCES+=($(find libluna/include/luna -type f))
|
|
SOURCES+=($(find libos/src -type f))
|
|
SOURCES+=($(find libos/include/os -type f))
|
|
|
|
for f in ${SOURCES[@]}
|
|
do
|
|
clang-format $f -i
|
|
done
|