Files
double-pendulum/build.rs
T
Philippe Zwietering 4e7260ff92
gitea/double-pendulum/pipeline/head This commit looks good
Used internal build tooling to pack index
2026-09-08 14:57:18 +02:00

10 lines
210 B
Rust

use std::fs;
fn main() {
println!("cargo:rerun-if-changed=index.html");
if let Err(e) = fs::copy("index.html", "pkg/index.html") {
eprintln!("Error: Couldn't copy index.html: {}", e);
}
}