main: make apt-get more quiet

This commit is contained in:
Dawid Dziurla 2020-03-26 16:51:36 +01:00
parent 1e762b3098
commit 63d10a4690
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B

View file

@ -104,7 +104,7 @@ async function main() {
await exec.exec("docker", [ await exec.exec("docker", [
"exec", "exec",
container, container,
"apt-get", "install", "-y", "dpkg-dev", "debhelper" "apt-get", "install", "-yq", "dpkg-dev", "debhelper"
]) ])
core.endGroup() core.endGroup()
@ -112,7 +112,7 @@ async function main() {
await exec.exec("docker", [ await exec.exec("docker", [
"exec", "exec",
container, container,
"apt-get", "build-dep", "-y", sourceDirectory "apt-get", "build-dep", "-yq", sourceDirectory
]) ])
core.endGroup() core.endGroup()