assembled docker args

This commit is contained in:
David Hiendl 2023-12-02 20:45:07 +01:00
parent ed6d27d3b9
commit ae96735c11
2 changed files with 6 additions and 22 deletions

14
dist/index.js vendored
View File

@ -62276,17 +62276,9 @@ function executeDockerBuild(dockerArgs) {
cwd : getDockerContextDir() cwd : getDockerContextDir()
}); });
// proc.on('exit', function (code, signal) { if (proc.error != null) {
// console.log(`docker process exited with code ${code} and signal ${signal}`); throw proc.error;
// }); }
// proc.stdout.on('data', (data) => {
// console.log(`docker: ${data}`);
// });
//
// proc.stderr.on('data', (data) => {
// console.error(`docker: ${data}`);
// });
} }
;// CONCATENATED MODULE: ./src/action.js ;// CONCATENATED MODULE: ./src/action.js

View File

@ -174,15 +174,7 @@ export function executeDockerBuild(dockerArgs) {
cwd : getDockerContextDir() cwd : getDockerContextDir()
}); });
// proc.on('exit', function (code, signal) { if (proc.error != null) {
// console.log(`docker process exited with code ${code} and signal ${signal}`); throw proc.error;
// }); }
// proc.stdout.on('data', (data) => {
// console.log(`docker: ${data}`);
// });
//
// proc.stderr.on('data', (data) => {
// console.error(`docker: ${data}`);
// });
} }