Skip to content

Commit d169610

Browse files
committed
tools: use Copying instead of Generating for the static resources in ./v doc -m -f html vlib/
1 parent 2a9d1b2 commit d169610

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tools/vdoc/html.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ fn (vd &VDoc) get_resource(name string, out Output) string {
117117
} else {
118118
output_path := os.join_path(out.path, name)
119119
if !os.exists(output_path) {
120-
println('Generating ${res.len:8} bytes of static resources in `${output_path}` ...')
120+
println('Copying ${res.len:8} bytes from `${path}` to `${output_path}` ...')
121121
os.write_file(output_path, res) or { panic(err) }
122122
}
123123
return name

0 commit comments

Comments
 (0)