Change working dir and operate on .

This commit is contained in:
Jan Wagner 2024-01-06 15:33:43 +01:00
parent 0676dbed51
commit 7d43afb7a9

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()
}