Try and get Lintian to pass

This commit is contained in:
Mike Roberts 2020-10-28 23:22:03 +00:00
parent 9e9bd6b257
commit 1aa4b1952f
No known key found for this signature in database
GPG key ID: B68562622B45F745

12
main.js
View file

@ -189,9 +189,15 @@ async function main() {
core.startGroup("Run static analysis") core.startGroup("Run static analysis")
await exec.exec("docker", ["exec", container].concat( await exec.exec("docker", ["exec", container].concat(
["lintian"] [
.concat(lintianOpts) "find",
.concat("*" + targetArchitecture + ".changes") buildDirectory,
"-maxdepth", "1",
"-name", `*${targetArchitecture}.changes`,
"-type", "f",
"-print",
"-exec"
]).concat(["lintian"]).concat(lintianOpts).concat(["{}", ";"]
)) ))
core.endGroup() core.endGroup()
} }