diff --git a/dist/index.js b/dist/index.js index 50e17f2..3f41662 100644 --- a/dist/index.js +++ b/dist/index.js @@ -70996,7 +70996,7 @@ const git = __nccwpck_require__(1243); async function install(sourceDir, binDir) { if (fs.existsSync(path.join(sourceDir, 'configure'))) { await (0, exec_1.exec)('sh', ['./configure'], { cwd: sourceDir }); - await (0, exec_1.exec)('make', ['-j6'], { cwd: sourceDir }); + await (0, exec_1.exec)('make', ['-j6', 'VERBOSE=1'], { cwd: sourceDir }); await (0, exec_1.exec)('make', ['install', `PREFIX=${binDir}`], { cwd: sourceDir }); } else { diff --git a/src/unix-install.ts b/src/unix-install.ts index a589390..9bf0488 100644 --- a/src/unix-install.ts +++ b/src/unix-install.ts @@ -13,7 +13,7 @@ import { Version } from './interfaces'; async function install(sourceDir: string, binDir: string): Promise { if (fs.existsSync(path.join(sourceDir, 'configure'))) { await exec('sh', ['./configure'], { cwd: sourceDir }); - await exec('make', ['-j6'], { cwd: sourceDir }); + await exec('make', ['-j6', 'VERBOSE=1'], { cwd: sourceDir }); await exec('make', ['install', `PREFIX=${binDir}`], { cwd: sourceDir }); } else { await exec('make', ['-j6'], { cwd: sourceDir });