add trim and silent true

This commit is contained in:
Dmitry Shibanov 2022-07-12 14:19:55 +02:00
부모 28ad38fe06
커밋 072a2e3b10
2개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제

4
dist/setup/index.js vendored
파일 보기

@ -71847,8 +71847,8 @@ function run() {
}
// Output version of node is being used
try {
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true, silent: false });
core.setOutput('node-version', installedVersion);
const { stdout: installedVersion } = yield exec.getExecOutput('node', ['--version'], { ignoreReturnCode: true, silent: true });
core.setOutput('node-version', installedVersion.trim());
}
catch (err) {
core.setOutput('node-version', '');

파일 보기

@ -2,6 +2,7 @@ import * as core from '@actions/core';
import * as exec from '@actions/exec';
import * as installer from './installer';
import fs from 'fs';
import * as child_process from 'child_process';
import * as auth from './authutil';
import * as path from 'path';
import {restoreCache} from './cache-restore';
@ -45,9 +46,9 @@ export async function run() {
const {stdout: installedVersion} = await exec.getExecOutput(
'node',
['--version'],
{ignoreReturnCode: true, silent: false}
{ignoreReturnCode: true, silent: true}
);
core.setOutput('node-version', installedVersion);
core.setOutput('node-version', installedVersion.trim());
} catch (err) {
core.setOutput('node-version', '');
}