WIP: Fixing build-dep issues #1

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

View file

@ -208,7 +208,8 @@ async function main() {
"exec", "exec",
container, container,
"bash", "-c", "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() core.endGroup()
} }