We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908dc34 commit 157ca83Copy full SHA for 157ca83
src/utils/gitUtil.mts
@@ -26,7 +26,7 @@ export async function checkGitVersion(
26
console.debug(
27
`Git version check result: ${ret.stderr} stdout: ${ret.stdout}`
28
);
29
- const regex = /git version (\d+\.\d+(\.\d+)*)/;
+ const regex = /git version (\d+\.\d+\.\d+)/;
30
const match = regex.exec(ret.stdout);
31
if (match && match[1]) {
32
const gitVersion = match[1];
0 commit comments