summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-13 09:58:49 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-01-15 23:21:39 +0100
commitc3fec0094bdbef9607006ba8b4b66a33c4e93d12 (patch)
treeb3643ca8d182ba591d438749249fbf58091857ae /src/commands/build.rs
parent48021ad888c722c6d955857dcbbd87399ff257cc (diff)
Allow too many arguments for crate::commands::build()
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/commands/build.rs')
-rw-r--r--src/commands/build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/commands/build.rs b/src/commands/build.rs
index b3fd6c3..c4d876f 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -47,6 +47,7 @@ use crate::util::EnvironmentVariableName;
use crate::util::docker::ImageName;
use crate::util::progress::ProgressBars;
+#[allow(clippy::too_many_arguments)]
pub async fn build(repo_root: &Path,
matches: &ArgMatches,
progressbars: ProgressBars,