mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
append module name for module search path
This commit is contained in:
parent
68b4dab582
commit
ff216e7d50
@ -166,7 +166,7 @@ fn (v &V) find_module_path(mod string) ?string {
|
|||||||
tried_paths << filepath.join(v.pref.vlib_path, mod_path)
|
tried_paths << filepath.join(v.pref.vlib_path, mod_path)
|
||||||
tried_paths << filepath.join(modules_lookup_path, mod_path)
|
tried_paths << filepath.join(modules_lookup_path, mod_path)
|
||||||
if v.pref.user_mod_path.len > 0 {
|
if v.pref.user_mod_path.len > 0 {
|
||||||
tried_paths << v.pref.user_mod_path
|
tried_paths << filepath.join(v.pref.user_mod_path, mod_path)
|
||||||
}
|
}
|
||||||
for try_path in tried_paths {
|
for try_path in tried_paths {
|
||||||
if v.pref.is_verbose { println(' >> trying to find $mod in $try_path ...') }
|
if v.pref.is_verbose { println(' >> trying to find $mod in $try_path ...') }
|
||||||
|
Loading…
Reference in New Issue
Block a user