build: rebuild dist

This commit is contained in:
Nogic 2023-05-12 00:23:52 +00:00
parent ee0d3b4f21
commit 5cde892d9e
3 changed files with 3 additions and 5 deletions

View File

@ -58634,7 +58634,7 @@ const constants_1 = __nccwpck_require__(9042);
* ```
*/
const getNuGetFolderPath = () => __awaiter(void 0, void 0, void 0, function* () {
const { stdout, stderr, exitCode } = yield exec.getExecOutput(constants_1.cliCommand, undefined, { ignoreReturnCode: true });
const { stdout, stderr, exitCode } = yield exec.getExecOutput(constants_1.cliCommand, undefined, { ignoreReturnCode: true, silent: true });
if (exitCode) {
throw new Error(!stderr.trim()
? `The '${constants_1.cliCommand}' command failed with exit code: ${exitCode}`

2
dist/setup/index.js vendored
View File

@ -71056,7 +71056,7 @@ const constants_1 = __nccwpck_require__(9042);
* ```
*/
const getNuGetFolderPath = () => __awaiter(void 0, void 0, void 0, function* () {
const { stdout, stderr, exitCode } = yield exec.getExecOutput(constants_1.cliCommand, undefined, { ignoreReturnCode: true });
const { stdout, stderr, exitCode } = yield exec.getExecOutput(constants_1.cliCommand, undefined, { ignoreReturnCode: true, silent: true });
if (exitCode) {
throw new Error(!stderr.trim()
? `The '${constants_1.cliCommand}' command failed with exit code: ${exitCode}`

View File

@ -39,9 +39,7 @@ export const getNuGetFolderPath = async () => {
const {stdout, stderr, exitCode} = await exec.getExecOutput(
cliCommand,
undefined,
{ ignoreReturnCode: true,
silent: true
}
{ignoreReturnCode: true, silent: true}
);
if (exitCode) {