better named tests and log local-docker params

pull/461/head
Frostebite 2022-09-21 17:47:57 +01:00
parent 1fa24ce8e6
commit 975b1b0130
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -5282,7 +5282,7 @@ class ImageEnvironmentFactory {
} }
if (p.name !== 'ANDROID_KEYSTORE_BASE64' && p.value.toString().includes(`\n`)) { if (p.name !== 'ANDROID_KEYSTORE_BASE64' && p.value.toString().includes(`\n`)) {
string += `--env ${p.name} `; string += `--env ${p.name} `;
process.env[p.name] = p.value; process.env[p.name] = p.value.toString();
continue; continue;
} }
string += `--env ${p.name}="${p.value}" `; string += `--env ${p.name}="${p.value}" `;

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -16,7 +16,7 @@ class ImageEnvironmentFactory {
} }
if (p.name !== 'ANDROID_KEYSTORE_BASE64' && p.value.toString().includes(`\n`)) { if (p.name !== 'ANDROID_KEYSTORE_BASE64' && p.value.toString().includes(`\n`)) {
string += `--env ${p.name} `; string += `--env ${p.name} `;
process.env[p.name] = p.value; process.env[p.name] = p.value.toString();
continue; continue;
} }