forked from waja/action-debian-package
main: make apt-get more quiet
This commit is contained in:
parent
1e762b3098
commit
63d10a4690
4
main.js
4
main.js
|
@ -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()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue