forked from waja/action-debian-package
main: fix style
This commit is contained in:
parent
7bec10b9ba
commit
a681ceddab
8
main.js
8
main.js
|
@ -74,7 +74,7 @@ async function main() {
|
||||||
buildDirectory: buildDirectory,
|
buildDirectory: buildDirectory,
|
||||||
artifactsDirectory: artifactsDirectory,
|
artifactsDirectory: artifactsDirectory,
|
||||||
lintianOpts: lintianOpts,
|
lintianOpts: lintianOpts,
|
||||||
lintianRun: lintianRun
|
lintianRun: lintianRun
|
||||||
}
|
}
|
||||||
console.log(details)
|
console.log(details)
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
@ -189,12 +189,12 @@ async function main() {
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
if (lintianRun){
|
if (lintianRun) {
|
||||||
core.startGroup("Run static analysis")
|
core.startGroup("Run static analysis")
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
"exec",
|
"exec",
|
||||||
container,
|
container,
|
||||||
"find",
|
"find",
|
||||||
buildDirectory,
|
buildDirectory,
|
||||||
"-maxdepth", "1",
|
"-maxdepth", "1",
|
||||||
"-name", `*${version}*.changes`,
|
"-name", `*${version}*.changes`,
|
||||||
|
@ -203,7 +203,7 @@ async function main() {
|
||||||
"-exec", "lintian", lintianOpts, "{}", "\+"
|
"-exec", "lintian", lintianOpts, "{}", "\+"
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
}
|
}
|
||||||
|
|
||||||
core.startGroup("Install built packages")
|
core.startGroup("Install built packages")
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
|
|
Loading…
Reference in a new issue