mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-14 12:45:09 +00:00
build: rebuild dist
This commit is contained in:
parent
ee0d3b4f21
commit
5cde892d9e
2
dist/cache-save/index.js
vendored
2
dist/cache-save/index.js
vendored
@ -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
2
dist/setup/index.js
vendored
@ -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}`
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user