better named tests and log local-docker params

pull/461/head
Frostebite 2022-09-21 17:37:19 +01:00
parent a4cfa9456e
commit 1fa24ce8e6
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

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