From 4e4ec4c0a2a611f27d93949e9e19064fe021904e Mon Sep 17 00:00:00 2001 From: Egor Larionov Date: Sun, 5 Apr 2020 13:32:54 -0700 Subject: [PATCH] Revert accidental change to build.rs --- druid/examples/wasm/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/druid/examples/wasm/build.rs b/druid/examples/wasm/build.rs index d321d4eea9..a659b4e090 100644 --- a/druid/examples/wasm/build.rs +++ b/druid/examples/wasm/build.rs @@ -107,7 +107,7 @@ fn main() -> Result<()> { } // Write out the contents of the examples.rs module. - //fs::write(src_dir.join("examples.rs"), example_rs)?; + fs::write(src_dir.join("examples.rs"), example_rs)?; Ok(()) }