From 92c6cd96053b20e01d65c8bd0ae2fd8a13d417a0 Mon Sep 17 00:00:00 2001 From: Emily Leffler Schulman <24902269+emilyatmobtown@users.noreply.github.com> Date: Thu, 1 Dec 2022 16:21:43 -0500 Subject: [PATCH] Update grep to match more files. --- configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.php b/configure.php index fc3dd521..39abfdf9 100644 --- a/configure.php +++ b/configure.php @@ -150,7 +150,7 @@ function determine_separator( string $path ): string { } function list_all_files_for_replacement(): array { - return explode( PHP_EOL, run( 'grep -R -l ./ --exclude LICENSE --exclude configure.php --exclude composer.lock --exclude-dir .git --exclude-dir .github --exclude-dir vendor --exclude-dir bin --exclude-dir webpack --exclude-dir modules --exclude-dir .phpcs' ) ); + return explode( PHP_EOL, run( 'grep -R -l . --exclude LICENSE --exclude configure.php --exclude composer.lock --exclude-dir .git --exclude-dir .github --exclude-dir vendor --exclude-dir bin --exclude-dir webpack --exclude-dir modules --exclude-dir .phpcs' ) ); } function delete_files( string|array $paths ) {