From 5df4f8873cd632537b5fb4795e2deac724f82930 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 27 Aug 2018 11:59:15 -0400 Subject: [PATCH] This isn't necessary --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 494e454..34ca6e2 100644 --- a/build.rs +++ b/build.rs @@ -12,7 +12,7 @@ fn main() { // make a dummy one use std::{env, fs::OpenOptions, path::Path}; let out_dir = Path::new(&env::var("OUT_DIR").expect("no out_dir set")).join("skeptic-tests.rs"); - let f = OpenOptions::new() + OpenOptions::new() .create(true) .write(true) .open(out_dir)