WIP: fix_build-dep #2

Draft
waja wants to merge 3 commits from fix_build-dep into master
Showing only changes of commit 7d43afb7a9 - Show all commits

View file

@ -208,7 +208,8 @@ async function main() {
"exec",
container,
"bash", "-c",
`apt-get build-dep -yq -t '${imageTag}' '${sourceDirectory}' || apt-get build-dep -yq '${sourceDirectory}'`
// `apt-get build-dep -yq -t '${imageTag}' '${sourceDirectory}' || apt-get build-dep -yq '${sourceDirectory}'`
`cd '${sourceDirectory}' && apt-get build-dep -yq -t '${imageTag}' . || apt-get build-dep -yq .`
])
core.endGroup()
}