Skip to content

Commit 546e5bf

Browse files
meorphismeorphis
andauthored
fix glob (#218)
Co-authored-by: meorphis <[email protected]>
1 parent 2da75c8 commit 546e5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/strategies/csharp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class CSharp extends BaseStrategy {
5353
private async getCsprojName(): Promise<string> {
5454
// First, try to find .csproj files in the path
5555
const files = await this.github.findFilesByGlobAndRef(
56-
'*.csproj',
56+
'**/*.csproj',
5757
this.changesBranch,
5858
this.path === '.' ? undefined : this.path
5959
);

0 commit comments

Comments
 (0)