mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: fix '/' in scan_static_directory (#14940)
This commit is contained in:
parent
946da5556d
commit
eb10cc9606
@ -613,7 +613,7 @@ fn (mut ctx Context) scan_static_directory(directory_path string, mount_path str
|
|||||||
for file in files {
|
for file in files {
|
||||||
full_path := os.join_path(directory_path, file)
|
full_path := os.join_path(directory_path, file)
|
||||||
if os.is_dir(full_path) {
|
if os.is_dir(full_path) {
|
||||||
ctx.scan_static_directory(full_path, mount_path + '/' + file)
|
ctx.scan_static_directory(full_path, mount_path.trim_right('/') + '/' + file)
|
||||||
} else if file.contains('.') && !file.starts_with('.') && !file.ends_with('.') {
|
} else if file.contains('.') && !file.starts_with('.') && !file.ends_with('.') {
|
||||||
ext := os.file_ext(file)
|
ext := os.file_ext(file)
|
||||||
// Rudimentary guard against adding files not in mime_types.
|
// Rudimentary guard against adding files not in mime_types.
|
||||||
|
Loading…
Reference in New Issue
Block a user