From 0c07e66c4f24b58268412242f4777edf3b161628 Mon Sep 17 00:00:00 2001 From: apio Date: Sat, 11 Mar 2023 10:38:34 +0100 Subject: [PATCH] Update all files from luna/ paths to libluna/ --- .vscode/c_cpp_properties.json | 2 +- tools/check-formatting.sh | 6 +++--- tools/check-stdint.sh | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index d5b4e0e5..ce75874e 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -11,7 +11,7 @@ "${default}", "${workspaceFolder}/base/usr/include", "${workspaceFolder}/libc/include", - "${workspaceFolder}/luna/include" + "${workspaceFolder}/libluna/include" ] } ], diff --git a/tools/check-formatting.sh b/tools/check-formatting.sh index 9be40812..77c959f5 100755 --- a/tools/check-formatting.sh +++ b/tools/check-formatting.sh @@ -5,8 +5,8 @@ source $(dirname $0)/env.sh cd $LUNA_ROOT SOURCES=($(find kernel/src -type f | grep -v "\.asm")) -SOURCES+=($(find luna/src -type f)) -SOURCES+=($(find luna/include/luna -type f)) +SOURCES+=($(find libluna/src -type f)) +SOURCES+=($(find libluna/include/luna -type f)) ALL_OK=1 @@ -27,4 +27,4 @@ then exit 0 fi -exit 1 \ No newline at end of file +exit 1 diff --git a/tools/check-stdint.sh b/tools/check-stdint.sh index 8bd9cfb4..d732ecf9 100755 --- a/tools/check-stdint.sh +++ b/tools/check-stdint.sh @@ -6,8 +6,8 @@ source $(dirname $0)/env.sh cd $LUNA_ROOT SOURCES=($(find kernel/src -type f | grep -v "\.asm" | grep -v "bootboot.h")) -SOURCES+=($(find luna/src -type f)) -SOURCES+=($(find luna/include/luna -type f | grep -v "Types.h")) +SOURCES+=($(find libluna/src -type f)) +SOURCES+=($(find libluna/include/luna -type f | grep -v "Types.h")) SUCCESS=1 @@ -42,4 +42,4 @@ then exit 1 else echo All files OK -fi \ No newline at end of file +fi