All multi-line parameters in ImageEnvFactory should use --env {paramter} notation rather than --env{name}={value}
parent
6f7c978890
commit
5555777610
|
|
@ -3226,7 +3226,7 @@ class ImageEnvironmentFactory {
|
|||
if (p.value === '' || p.value === undefined) {
|
||||
continue;
|
||||
}
|
||||
if (p.value.includes(`\n`)) {
|
||||
if (p.value.toString().includes(`\n`)) {
|
||||
string += `--env ${p.name} `;
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -11,7 +11,7 @@ class ImageEnvironmentFactory {
|
|||
if (p.value === '' || p.value === undefined) {
|
||||
continue;
|
||||
}
|
||||
if (p.value.includes(`\n`)) {
|
||||
if (p.value.toString().includes(`\n`)) {
|
||||
string += `--env ${p.name} `;
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue