assembled docker args
This commit is contained in:
Vendored
+1
-1
@@ -62268,7 +62268,7 @@ function prepareDockerArgs(destinations) {
|
|||||||
|
|
||||||
function executeDockerBuild(dockerArgs) {
|
function executeDockerBuild(dockerArgs) {
|
||||||
const dockerArgsStr = dockerArgs.join(' ');
|
const dockerArgsStr = dockerArgs.join(' ');
|
||||||
const dockerSubCmd = core.getBooleanInput('use_buildx') ? 'buildx' : 'build';
|
const dockerSubCmd = core.getBooleanInput('use_buildx') ? 'buildx build' : 'build';
|
||||||
|
|
||||||
const proc = external_child_process_namespaceObject.spawnSync(`docker ${dockerSubCmd} ${dockerArgsStr}`, {
|
const proc = external_child_process_namespaceObject.spawnSync(`docker ${dockerSubCmd} ${dockerArgsStr}`, {
|
||||||
shell: true,
|
shell: true,
|
||||||
|
|||||||
+1
-1
@@ -166,7 +166,7 @@ export function prepareDockerArgs(destinations) {
|
|||||||
|
|
||||||
export function executeDockerBuild(dockerArgs) {
|
export function executeDockerBuild(dockerArgs) {
|
||||||
const dockerArgsStr = dockerArgs.join(' ');
|
const dockerArgsStr = dockerArgs.join(' ');
|
||||||
const dockerSubCmd = core.getBooleanInput('use_buildx') ? 'buildx' : 'build';
|
const dockerSubCmd = core.getBooleanInput('use_buildx') ? 'buildx build' : 'build';
|
||||||
|
|
||||||
const proc = child_process.spawnSync(`docker ${dockerSubCmd} ${dockerArgsStr}`, {
|
const proc = child_process.spawnSync(`docker ${dockerSubCmd} ${dockerArgsStr}`, {
|
||||||
shell: true,
|
shell: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user