From 0a13f77571f04eae47862eac6d693be3bd9a0d9a Mon Sep 17 00:00:00 2001 From: Fabio Niephaus Date: Thu, 26 Mar 2020 12:22:09 +0100 Subject: [PATCH] Make apt-get quiet --- dist/index.js | 4 ++-- index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index bea3326..2011efc 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1010,13 +1010,13 @@ async function run() { } async function install64bitDependencies(deps) { - await exec.exec(`sudo apt-get install -y --no-install-recommends ${deps}`) + await exec.exec(`sudo apt-get install -qq --no-install-recommends ${deps}`) } async function install32bitDependencies(deps) { await exec.exec('sudo dpkg --add-architecture i386') await exec.exec('sudo apt-get update') - await exec.exec(`sudo apt-get install -y --no-install-recommends ${deps}`) + await exec.exec(`sudo apt-get install -qq --no-install-recommends ${deps}`) } function isLinux() { diff --git a/index.js b/index.js index 414f38f..9634727 100644 --- a/index.js +++ b/index.js @@ -57,13 +57,13 @@ async function run() { } async function install64bitDependencies(deps) { - await exec.exec(`sudo apt-get install -y --no-install-recommends ${deps}`) + await exec.exec(`sudo apt-get install -qq --no-install-recommends ${deps}`) } async function install32bitDependencies(deps) { await exec.exec('sudo dpkg --add-architecture i386') await exec.exec('sudo apt-get update') - await exec.exec(`sudo apt-get install -y --no-install-recommends ${deps}`) + await exec.exec(`sudo apt-get install -qq --no-install-recommends ${deps}`) } function isLinux() {