remove whitespace removal

Signed-off-by: Tim Etchells <tetchel@gmail.com>
This commit is contained in:
Tim Etchells 2021-07-09 11:06:27 -04:00
parent 5cf7e9c453
commit e2cf208457
3 changed files with 4 additions and 4 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -128,8 +128,8 @@ function getInputList(name: string): string[] {
function getArch(): string { function getArch(): string {
// 'arch' should be used over 'archs', see https://github.com/redhat-actions/buildah-build/issues/60 // 'arch' should be used over 'archs', see https://github.com/redhat-actions/buildah-build/issues/60
const archs = core.getInput(Inputs.ARCHS).replace(/\s+/g, ""); const archs = core.getInput(Inputs.ARCHS);
const arch = core.getInput(Inputs.ARCH).replace(/\s+/g, ""); const arch = core.getInput(Inputs.ARCH);
if (arch && archs) { if (arch && archs) {
core.warning( core.warning(