diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-06-22 23:40:24 +0200 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2025-06-22 23:40:24 +0200 |
| commit | f0efd3728e8d6408b5b13b71c49b03b2eb062bd9 (patch) | |
| tree | 5e65cdf008364492f6541f824e91a8663a864b4f /src/server/caches.odin | |
| parent | 3d1b2a5d7849c16dac4acea8b205af15be3351f4 (diff) | |
Auto import packages from core on completion.
Diffstat (limited to 'src/server/caches.odin')
| -rw-r--r-- | src/server/caches.odin | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/caches.odin b/src/server/caches.odin index 3d26e22..7e87762 100644 --- a/src/server/caches.odin +++ b/src/server/caches.odin @@ -79,9 +79,6 @@ find_all_package_aliases :: proc() { for pkg in pkgs { if pkg, err := filepath.rel(v, pkg, context.temp_allocator); err == .None { forward_pkg, _ := filepath.to_slash(pkg, context.temp_allocator) - if !strings.contains(forward_pkg, "/") { - continue - } if k not_in build_cache.pkg_aliases { build_cache.pkg_aliases[k] = make([dynamic]string) } |