summaryrefslogtreecommitdiffhomepage
path: root/format.sh
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 15:47:16 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-08 15:47:16 +0100
commitddb1cbc831b6d13b985d91022f01e955e24ae871 (patch)
tree985c7eda4fafa827eaad88b6b469b0baba791817 /format.sh
parent7a469801ecb55fcde0199d4e41b1cec3a17dcb05 (diff)
[CHORE] Patching TOML manifest parser to avoid null deref.nebuild-patches-deref
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'format.sh')
-rwxr-xr-xformat.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/format.sh b/format.sh
index f36943c..d5fa876 100755
--- a/format.sh
+++ b/format.sh
@@ -3,7 +3,7 @@
THIS_PATH="$(realpath "$0")"
THIS_DIR="$(dirname "$THIS_PATH")"
-FILE_LIST="$(find "$THIS_DIR" | grep -E ".*(\.cc|\.c|\.h|\.inl)$")"
+FILE_LIST="$(find "$THIS_DIR" | grep -E ".*(\.cpp|\.c|\.inl)$")"
echo -e "Files found to format = \n\"\"\"\n$FILE_LIST\n\"\"\""