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/1879452353pull/346/head
parent
b94200d3d4
commit
8e0583a14b
|
@ -3398,10 +3398,6 @@ class ImageEnvironmentFactory {
|
||||||
if (p.value === '' || p.value === undefined) {
|
if (p.value === '' || p.value === undefined) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (p.value.toString().includes(`\n`)) {
|
|
||||||
string += `--env ${p.name} `;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
string += `--env ${p.name}="${p.value}" `;
|
string += `--env ${p.name}="${p.value}" `;
|
||||||
}
|
}
|
||||||
return string;
|
return string;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -14,10 +14,7 @@ class ImageEnvironmentFactory {
|
||||||
if (p.value === '' || p.value === undefined) {
|
if (p.value === '' || p.value === undefined) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (p.value.toString().includes(`\n`)) {
|
|
||||||
string += `--env ${p.name} `;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
string += `--env ${p.name}="${p.value}" `;
|
string += `--env ${p.name}="${p.value}" `;
|
||||||
}
|
}
|
||||||
return string;
|
return string;
|
||||||
|
|
Loading…
Reference in New Issue