From d1696104c99e8e1bd4ed8992845fd4fe35023773 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 1 Aug 2025 18:47:49 +0300 Subject: [PATCH] tools: use `Copying` instead of `Generating` for the static resources in `./v doc -m -f html vlib/` --- cmd/tools/vdoc/html.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vdoc/html.v b/cmd/tools/vdoc/html.v index d2107ac996..5d6ec00f2f 100644 --- a/cmd/tools/vdoc/html.v +++ b/cmd/tools/vdoc/html.v @@ -117,7 +117,7 @@ fn (vd &VDoc) get_resource(name string, out Output) string { } else { output_path := os.join_path(out.path, name) if !os.exists(output_path) { - println('Generating ${res.len:8} bytes of static resources in `${output_path}` ...') + println('Copying ${res.len:8} bytes from `${path}` to `${output_path}` ...') os.write_file(output_path, res) or { panic(err) } } return name