From e6a262bc00fc9afe9dbd0dddedc7b0e651fc1a4c Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Mon, 18 Jul 2022 16:52:50 +0100 Subject: [PATCH] Ignore `rr` binary (#191) --- src/ApplicationFiles.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ApplicationFiles.php b/src/ApplicationFiles.php index a2f0f1cb..9dd5abf6 100644 --- a/src/ApplicationFiles.php +++ b/src/ApplicationFiles.php @@ -18,6 +18,7 @@ public static function get($path) ->in($path) ->exclude('.idea') ->exclude('.vapor') + ->notName('rr') ->notPath('/^'.preg_quote('tests', '/').'/') ->ignoreVcs(true) ->ignoreDotFiles(false);