This commit is contained in:
Graham Christensen 2024-04-19 11:45:17 -04:00
parent cd56eca96b
commit fa0008f8e8
3 changed files with 6 additions and 0 deletions

2
dist/index.js generated vendored
View file

@ -95344,6 +95344,8 @@ const getLinuxInfo = async () => {
let data = {};
try {
data = (0,linux_release_info_dist/* releaseInfo */.o)({ mode: "sync" });
// eslint-disable-next-line no-console
console.log(data);
}
catch (e) {
core.debug(`Error collecting release info: ${e}`);

2
dist/platform.js generated vendored
View file

@ -51,6 +51,8 @@ const getLinuxInfo = async () => {
let data = {};
try {
data = releaseInfo({ mode: "sync" });
// eslint-disable-next-line no-console
console.log(data);
}
catch (e) {
core.debug(`Error collecting release info: ${e}`);

View file

@ -88,6 +88,8 @@ const getLinuxInfo = async (): Promise<{
try {
data = releaseInfo({ mode: "sync" });
// eslint-disable-next-line no-console
console.log(data);
} catch (e) {
core.debug(`Error collecting release info: ${e}`);
}