Merge pull request #64 from SebKuzminsky/no-dash-t

run apt-get without -t
This commit is contained in:
Dawid Dziurla 2022-11-06 16:00:09 +01:00 committed by GitHub
commit ac675aa4f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ async function main() {
await exec.exec("docker", [
"exec",
container,
"apt-get", "install", "-yq", "-t", imageTag, "dpkg-dev", "debhelper", "devscripts"
"apt-get", "install", "-yq", "dpkg-dev", "debhelper", "devscripts"
])
core.endGroup()
@ -141,7 +141,7 @@ async function main() {
await exec.exec("docker", [
"exec",
container,
"apt-get", "build-dep", "-yq", "-t", imageTag, sourceDirectory
"apt-get", "build-dep", "-yq", sourceDirectory
])
core.endGroup()
}