Fix license issue (#346)
This commit is contained in:
4
dist/index.js
generated
vendored
4
dist/index.js
generated
vendored
@@ -3398,6 +3398,10 @@ class ImageEnvironmentFactory {
|
|||||||
if (p.value === '' || p.value === undefined) {
|
if (p.value === '' || p.value === undefined) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (p.name !== 'ANDROID_KEYSTORE_BASE64' && 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;
|
||||||
|
|||||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@@ -14,6 +14,10 @@ class ImageEnvironmentFactory {
|
|||||||
if (p.value === '' || p.value === undefined) {
|
if (p.value === '' || p.value === undefined) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if (p.name !== 'ANDROID_KEYSTORE_BASE64' && p.value.toString().includes(`\n`)) {
|
||||||
|
string += `--env ${p.name} `;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
string += `--env ${p.name}="${p.value}" `;
|
string += `--env ${p.name}="${p.value}" `;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user