build: do not install package silently during publish

This commit is contained in:
Samuel Attard
2023-02-06 16:27:11 -08:00
parent bfb870234d
commit edeaa9f2be

View File

@@ -170,7 +170,7 @@ new Promise((resolve, reject) => {
// test that the package can install electron prebuilt from github release
const tarballPath = path.join(tempDir, `${rootPackageJson.name}-${currentElectronVersion}.tgz`);
return new Promise((resolve, reject) => {
const result = childProcess.spawnSync('npm', ['install', tarballPath, '--force', '--silent'], {
const result = childProcess.spawnSync('npm', ['install', tarballPath, '--force'], {
env: { ...process.env, electron_config_cache: tempDir },
cwd: tempDir,
stdio: 'inherit'