-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build-tools): Filter out empty responses from git ls-files (#22247)
#22226 introduced a bug that caused directory paths to get into the list of cached files in the Biome task. The root cause was incomplete handling of the response from `git ls-files`. Empty strings made it into the list of files, which later resolved as a path to the working directory - the root of the repo. The fix is to remove empty strings from the results array.
- Loading branch information
1 parent
f461368
commit 6f4b15d
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters