aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2024-02-03 19:30:23 +0100
committerDanielGavin <danielgavin5@hotmail.com>2024-02-03 19:30:23 +0100
commit3f38e49ac6635bd9a4a2b00097505a0adf078719 (patch)
tree6b9acd7eece82699430d14ecd1f9296bf8b6a7f9
parent1e87c5bc9732fcda326674283be75272a95f8dd3 (diff)
Forgot to add the builtin package correctly after moving to base collection
-rw-r--r--src/server/requests.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/requests.odin b/src/server/requests.odin
index 4c653ad..afe54da 100644
--- a/src/server/requests.odin
+++ b/src/server/requests.odin
@@ -757,7 +757,7 @@ request_initialize :: proc(
Add runtime package
*/
- if core, ok := config.collections["core"]; ok {
+ if core, ok := config.collections["base"]; ok {
append(&indexer.builtin_packages, path.join({core, "runtime"}))
}