Skip to content

Commit

Permalink
fix(cli): incorrect repo parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
sinedied committed Jun 4, 2024
1 parent d594d85 commit 85f2b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function parseRepository(string?: string): GitHubRepository | undefined {
return undefined;
}

const match = repositoryRegex.exec(string);
const match = repositoryRegex.exec(string.trim());
if (!match) {
return undefined;
}
Expand Down

0 comments on commit 85f2b3d

Please sign in to comment.