From e125d45a8e09f301747338a8db6f7f610c8cd4e3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 26 Feb 2023 14:28:07 +0100 Subject: [PATCH] Multiple arguments get handled differently in clap in comparison to structopt We should document that change --- lychee-bin/tests/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lychee-bin/tests/cli.rs b/lychee-bin/tests/cli.rs index dbd641c..0741ed4 100644 --- a/lychee-bin/tests/cli.rs +++ b/lychee-bin/tests/cli.rs @@ -1050,6 +1050,7 @@ mod cli { cmd.arg("--exclude-path") .arg(&excluded_path1) + .arg("--exclude-path") .arg(&excluded_path2) .arg("--") .arg(&test_path)