diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/lib.rs | 2 | ||||
-rw-r--r-- | cli/ops/fs.rs | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/cli/lib.rs b/cli/lib.rs index a1c608c44..f0df3f149 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -1,4 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +#![deny(warnings)] + #[macro_use] extern crate lazy_static; #[macro_use] diff --git a/cli/ops/fs.rs b/cli/ops/fs.rs index f592c1142..df15e2c88 100644 --- a/cli/ops/fs.rs +++ b/cli/ops/fs.rs @@ -86,6 +86,7 @@ fn op_mkdir( struct ChmodArgs { promise_id: Option<u64>, path: String, + #[allow(unused)] mode: u32, } |