diff options
Diffstat (limited to 'build.rs')
-rw-r--r-- | build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.rs b/build.rs index 05eca7a..dcfa332 100644 --- a/build.rs +++ b/build.rs @@ -24,7 +24,7 @@ fn main() { for file in ["index.html", "style.css"] { std::fs::copy( companion_in.join(file), - &companion_out.join(file) + companion_out.join(file) ).unwrap(); } } |