From dc2c467a7c7f420f04396d38b1811c32af217494 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Sat, 5 Nov 2022 12:20:13 -0600 Subject: [PATCH] run apt-get without -t --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 44a7f69..dfe2aaf 100644 --- a/main.js +++ b/main.js @@ -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() }