shell.exec -> shell.spawn

This commit is contained in:
Girish Ramakrishnan
2018-11-17 19:26:19 -08:00
parent 1b1945e1f5
commit fd4057df94
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -369,7 +369,7 @@ function updateAddonConfig(platformConfig, callback) {
}
const args = `update --memory ${memory} --memory-swap ${memorySwap} ${containerName}`.split(' ');
shell.exec(`update${containerName}`, '/usr/bin/docker', args, { }, iteratorCallback);
shell.spawn(`update${containerName}`, '/usr/bin/docker', args, { }, iteratorCallback);
}, callback);
}