assembled docker args

This commit is contained in:
2023-12-02 20:38:26 +01:00
parent e35b2f2658
commit 309290f1cf
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -62266,10 +62266,10 @@ function prepareDockerArgs(destinations) {
return dockerArgs;
}
function lib_executeDockerBuild(dockerArgs) {
function executeDockerBuild(dockerArgs) {
const dockerArgsStr = dockerArgs.join(' ');
const proc = child_process.spawnSync('docker ' + dockerArgsStr, {
const proc = external_child_process_namespaceObject.spawnSync('docker ' + dockerArgsStr, {
shell: true,
stdio: 'inherit',
cwd : getDockerContextDir()