|
|
@ -93643,6 +93643,10 @@ function parseGoVersionFile(versionFilePath) {
|
|
|
|
const match = contents.match(/^go (\d+(\.\d+)*)/m);
|
|
|
|
const match = contents.match(/^go (\d+(\.\d+)*)/m);
|
|
|
|
return match ? match[1] : '';
|
|
|
|
return match ? match[1] : '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (path.basename(versionFilePath) === '.tool-versions') {
|
|
|
|
|
|
|
|
const match = contents.match(/^golang\s+(\d+(\.\d+)*)/m);
|
|
|
|
|
|
|
|
return match ? match[1] : '';
|
|
|
|
|
|
|
|
}
|
|
|
|
return contents.trim();
|
|
|
|
return contents.trim();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exports.parseGoVersionFile = parseGoVersionFile;
|
|
|
|
exports.parseGoVersionFile = parseGoVersionFile;
|
|
|
|