Use strings as default input values
This commit is contained in:
parent
bed34a9575
commit
755cd39c9a
2 changed files with 6 additions and 6 deletions
2
main.js
2
main.js
|
|
@ -35,7 +35,7 @@ async function main() {
|
|||
// (Seems to not recognize that some packages are installed)
|
||||
"-d"
|
||||
]
|
||||
const dpkgBuildPackageOpts = core.getInput("dpkg_buildpackage_opts") || defaultDpkgBuildPackageOpts
|
||||
const dpkgBuildPackageOpts = core.getInput("dpkg_buildpackage_opts").replaceAll(" ", "").split(",") || defaultDpkgBuildPackageOpts
|
||||
const lintianOpts = core.getInput("lintian_opts") || []
|
||||
|
||||
const workspaceDirectory = process.cwd()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue