From 08ca2ff9698d36e6a368338d35f33b359d8df7a7 Mon Sep 17 00:00:00 2001 From: Arpad Borsos Date: Mon, 28 Sep 2020 12:46:36 +0200 Subject: [PATCH] make macos workaround silent --- dist/save/index.js | 2 +- src/save.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/save/index.js b/dist/save/index.js index 6c65497..01b54ec 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -54888,7 +54888,7 @@ async function macOsWorkaround() { try { // Workaround for https://github.com/actions/cache/issues/403 // Also see https://github.com/rust-lang/cargo/issues/8603 - await exec.exec("sudo", ["/usr/sbin/purge"]); + await exec.exec("sudo", ["/usr/sbin/purge"], { silent: true }); } catch (_a) { } } diff --git a/src/save.ts b/src/save.ts index b01bb41..22034a1 100644 --- a/src/save.ts +++ b/src/save.ts @@ -145,6 +145,6 @@ async function macOsWorkaround() { try { // Workaround for https://github.com/actions/cache/issues/403 // Also see https://github.com/rust-lang/cargo/issues/8603 - await exec.exec("sudo", ["/usr/sbin/purge"]); + await exec.exec("sudo", ["/usr/sbin/purge"], { silent: true }); } catch {} }