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 {} }