diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-03 09:29:33 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-10-03 09:29:33 +0200 |
commit | 5f83b14971292e6ff467e59d4bc3418f385a4cee (patch) | |
tree | eaeee1cd109800f565c5c6b607b0f47cffc16463 | |
parent | 9d62d592937cf8bb57f8553bafb16e8fe6213245 (diff) | |
parent | 267d267f3d82b05e671446bca88566a6c2013f8e (diff) |
Merge pull request #66693 from aaronfranke/quote-codeowners
Fix CODEOWNERS and fix missing quote in "Building for platform" message
-rw-r--r-- | .github/CODEOWNERS | 4 | ||||
-rw-r--r-- | SConstruct | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bd4eb906c0..7ac048b24a 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -15,6 +15,7 @@ SCsub @godotengine/buildsystem /core/ @godotengine/core /core/crypto/ @godotengine/network /core/debugger/ @godotengine/debugger +/core/extension/ @godotengine/gdextension /core/input/ @godotengine/input # Doc @@ -110,10 +111,9 @@ doc_classes/* @godotengine/documentation /modules/xatlas_unwrap/ @godotengine/rendering ## Scripting -/modules/gdnative/ @godotengine/gdnative /modules/gdscript/ @godotengine/gdscript /modules/jsonrpc/ @godotengine/gdscript -/modules/mono/ @godotengine/mono +/modules/mono/ @godotengine/dotnet ## Text /modules/freetype/ @godotengine/buildsystem diff --git a/SConstruct b/SConstruct index c86422c4e4..646f41839d 100644 --- a/SConstruct +++ b/SConstruct @@ -518,7 +518,7 @@ if selected_platform in platform_list: # are actually handled to change compile options, etc. detect.configure(env) - print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}.') + print(f'Building for platform "{selected_platform}", architecture "{env["arch"]}", target "{env["target"]}".') if env.dev_build: print("NOTE: Developer build, with debug optimization level and debug symbols (unless overridden).") |