From e4399557d79a40db3bc6c91bb9c18ddeb7f15e84 Mon Sep 17 00:00:00 2001 From: Greg Magolan Date: Thu, 28 Jul 2022 12:59:30 -0700 Subject: [PATCH] chore: add '?' pattern to test cases of copy_to_directory (#199) --- lib/tests/copy_to_directory/BUILD.bazel | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tests/copy_to_directory/BUILD.bazel b/lib/tests/copy_to_directory/BUILD.bazel index d40f3ba..d6201bc 100644 --- a/lib/tests/copy_to_directory/BUILD.bazel +++ b/lib/tests/copy_to_directory/BUILD.bazel @@ -307,7 +307,7 @@ copy_to_directory( include_srcs_patterns = [ "a", "b", - "e/e*", + "?/e*", "f/f2/f2", ], ) @@ -328,8 +328,8 @@ copy_to_directory( include_srcs_patterns = [ "a", "b", - "e/e*", - "f/f2/**", + "?/e*", + "f/f?/**", ], )