Fix Android build parameters error (#335)

Tests failing due to issue with `gh`. Test confirmed here: https://github.com/finol-digital/Card-Game-Simulator/actions/runs/1879452353
pull/346/head
David Finol 2022-02-21 23:31:08 -06:00 committed by GitHub
parent b94200d3d4
commit 8e0583a14b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 9 deletions

4
dist/index.js generated vendored
View File

@ -3398,10 +3398,6 @@ class ImageEnvironmentFactory {
if (p.value === '' || p.value === undefined) {
continue;
}
if (p.value.toString().includes(`\n`)) {
string += `--env ${p.name} `;
continue;
}
string += `--env ${p.name}="${p.value}" `;
}
return string;

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -14,10 +14,7 @@ class ImageEnvironmentFactory {
if (p.value === '' || p.value === undefined) {
continue;
}
if (p.value.toString().includes(`\n`)) {
string += `--env ${p.name} `;
continue;
}
string += `--env ${p.name}="${p.value}" `;
}
return string;