This commit is contained in:
sebastien 2025-05-30 18:07:13 +02:00
parent 8dcb9b1f2e
commit 77d9b0fce7

View File

@ -16,7 +16,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) => {