Skip to content

Commit

Permalink
Fix issue on glob matching (typealiased#294)
Browse files Browse the repository at this point in the history
## Overview

Address issue typealiased#293 

## Test Plan

Ran E2E test and it passed existing tests.
  • Loading branch information
juyan authored Feb 10, 2022
1 parent 81067ca commit 5645d27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private class GlobSearchOperation: BasicOperation {
override var description: String { "Glob Search" }

override func run() throws {
guard shouldInclude(sourcePath: sourcePath.path, in: sourcePath.path.parent()).value else {
guard shouldInclude(sourcePath: sourcePath.path.absolute(), in: sourcePath.path.parent()).value else {
log("Ignoring source path at \(sourcePath.path.absolute())")
return
}
Expand Down

0 comments on commit 5645d27

Please sign in to comment.