use child_process directly

This commit is contained in:
sebastien 2025-05-30 16:51:07 +02:00
parent c44ead96ea
commit 1fdd5e751e

View File

@ -17,7 +17,7 @@ function execPromise(
command: string,
options: ExecOptions,
): Promise<{exitCode: number; stdout: string; stderr: string}> {
options.shell = '/bin/bash';
// options.shell = '/bin/bash';
return new Promise((resolve, reject) => {
exec(command, options, (error, stdout, stderr) => {